-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcamunda app.module.ts
More file actions
35 lines (33 loc) · 1.2 KB
/
camunda app.module.ts
File metadata and controls
35 lines (33 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
https://medium.com/fsmk-engineering/how-to-use-camunda-as-an-angular-form-builder-5d349ff4ae6d
// app.module.ts (updated)
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatDialogModule } from '@angular/material/dialog';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
import { HttpClientModule } from '@angular/common/http';
import { AgGridModule } from 'ag-grid-angular';
import { DataGridComponent } from './data-grid.component';
import { BpmnViewerDialogComponent } from './bpmn-viewer-dialog.component';
import { BpmnLinkRendererComponent } from './bpmn-link-renderer.component';
import { CamundaService } from './camunda.service';
@NgModule({
declarations: [
DataGridComponent,
BpmnViewerDialogComponent,
BpmnLinkRendererComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatDialogModule,
MatButtonModule,
MatIconModule,
HttpClientModule,
AgGridModule
],
providers: [CamundaService],
bootstrap: [DataGridComponent]
})
export class AppModule { }