forked from jwiesmann/angular4-gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgantt.module.ts
33 lines (31 loc) · 1.11 KB
/
gantt.module.ts
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
import {NgModule} from '@angular/core';
import {GanttActivityComponent} from './gantt-activity/gantt-activity.component';
import {GroupByPipe} from './group-by.pipe';
import {GanttComponent} from './gantt/gantt.component';
import {GanttHeaderComponent} from './gantt-header/gantt-header.component';
import {GanttFooterComponent} from './gantt-footer/gantt-footer.component';
import {GanttActivityBackgroundComponent} from './gantt-activity-background/gantt-activity-background.component';
import {GanttActivityBarsComponent} from './gantt-activity-bars/gantt-activity-bars.component';
import {GanttTimeScaleComponent} from './gantt-time-scale/gantt-time-scale.component';
import {CommonModule} from '@angular/common';
@NgModule({
declarations: [
GanttComponent,
GanttActivityComponent,
GroupByPipe,
GanttComponent,
GanttHeaderComponent,
GanttFooterComponent,
GanttActivityBackgroundComponent,
GanttActivityBarsComponent,
GanttTimeScaleComponent
],
imports: [
CommonModule,
],
providers: [],
exports: [GanttComponent],
bootstrap: [GanttComponent]
})
export class GanttModule {
}