-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathZorroModule.component.ts
More file actions
73 lines (72 loc) · 2.58 KB
/
Copy pathZorroModule.component.ts
File metadata and controls
73 lines (72 loc) · 2.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { NgModule } from '@angular/core';
import { NzTagModule } from 'ng-zorro-antd/tag';
import { NzFormModule } from 'ng-zorro-antd/form';
import { NzIconModule } from 'ng-zorro-antd/icon';
import { NzMenuModule } from 'ng-zorro-antd/menu';
import { NzCardModule } from 'ng-zorro-antd/card';
import { NzTabsModule } from 'ng-zorro-antd/tabs';
import { NzListModule } from 'ng-zorro-antd/list';
import { NzSpinModule } from 'ng-zorro-antd/spin';
import { NzFlexModule } from 'ng-zorro-antd/flex';
import { NzAlertModule } from 'ng-zorro-antd/alert';
import { NzModalModule } from 'ng-zorro-antd/modal';
import { NzInputModule } from 'ng-zorro-antd/input';
import { NzRadioModule } from 'ng-zorro-antd/radio';
import { NzEmptyModule } from 'ng-zorro-antd/empty';
import { NzSwitchModule } from 'ng-zorro-antd/switch';
import { NzButtonModule } from 'ng-zorro-antd/button';
import { NzSelectModule } from 'ng-zorro-antd/select';
import { NzDrawerModule } from 'ng-zorro-antd/drawer';
import { NzCommentModule } from 'ng-zorro-antd/comment';
import { NzDividerModule } from 'ng-zorro-antd/divider';
import { NzToolTipModule } from 'ng-zorro-antd/tooltip';
import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
import { NzDropDownModule } from 'ng-zorro-antd/dropdown';
import { NzCollapseModule } from 'ng-zorro-antd/collapse';
import { NzSplitterModule } from 'ng-zorro-antd/splitter';
import { NzProgressModule } from 'ng-zorro-antd/progress';
import { NzSegmentedModule } from 'ng-zorro-antd/segmented';
import { NzPopconfirmModule } from 'ng-zorro-antd/popconfirm';
import { NzFloatButtonModule } from 'ng-zorro-antd/float-button';
import { NzInputNumberModule } from 'ng-zorro-antd/input-number';
import { NzDescriptionsModule } from 'ng-zorro-antd/descriptions';
import { NzMessageModule } from 'ng-zorro-antd/message';
import { NzNotificationModule } from 'ng-zorro-antd/notification';
@NgModule({
exports: [
NzTagModule,
NzFlexModule,
NzListModule,
NzIconModule,
NzFormModule,
NzCardModule,
NzMenuModule,
NzTabsModule,
NzSpinModule,
NzEmptyModule,
NzModalModule,
NzInputModule,
NzRadioModule,
NzAlertModule,
NzButtonModule,
NzSelectModule,
NzDrawerModule,
NzSwitchModule,
NzToolTipModule,
NzCommentModule,
NzDividerModule,
NzDropDownModule,
NzCheckboxModule,
NzCollapseModule,
NzSplitterModule,
NzProgressModule,
NzSegmentedModule,
NzPopconfirmModule,
NzFloatButtonModule,
NzInputNumberModule,
NzDescriptionsModule,
NzMessageModule,
NzNotificationModule
]
})
export class NgZorroAntdModule {}