Newer
Older
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
36
37
38
39
40
41
42
43
44
45
46
47
import { NgModule } from '@angular/core';
import { SharedModule } from './app-common.module';
import { FiltersToolComponent } from './list/filters/filters-tool.component';
import { PanelListComponent } from './list/panel/panel-list.component';
import { SummarySheetComponent } from './list/summarySheet/summary-sheet.component';
import { ExportComponent } from './list/export/export.component';
import { ToolsListComponent } from './list/tools/tools-list.component';
import { PrintedFolderModalComponent } from './printedFolder/printed-folder-modal.component';
import { ActionsListComponent } from './actions/actions-list.component';
import { FollowedActionListComponent } from './home/followed-action-list/followed-action-list.component';
import { NgPipesModule } from 'ngx-pipes';
import { NoteModule } from './notes/note.module';
@NgModule({
imports: [
SharedModule,
NgPipesModule,
NoteModule
],
declarations: [
FiltersToolComponent,
PanelListComponent,
SummarySheetComponent,
ExportComponent,
ToolsListComponent,
PrintedFolderModalComponent,
ActionsListComponent,
FollowedActionListComponent,
],
exports: [
FiltersToolComponent,
PanelListComponent,
SummarySheetComponent,
ExportComponent,
ToolsListComponent,
PrintedFolderModalComponent,
ActionsListComponent,
FollowedActionListComponent,
],
entryComponents: [
SummarySheetComponent,
ExportComponent,
PrintedFolderModalComponent,
],
})
export class AppListModule { }