2018-10-26 11:33:25 +08:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
2018-11-12 11:27:23 +08:00
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
2018-11-15 18:29:19 +08:00
|
|
|
import { NgZorroAntdModule } from 'ng-zorro-antd'
|
|
|
|
|
|
2018-11-12 11:27:23 +08:00
|
|
|
import { PipesModule } from '../../pipes/pipes.module';
|
2018-10-26 11:33:25 +08:00
|
|
|
import { MainComponent } from './main.component';
|
|
|
|
|
import { MainRoutingModule } from './main-routing.module'
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
2018-11-12 11:27:23 +08:00
|
|
|
FormsModule,
|
|
|
|
|
ReactiveFormsModule,
|
2018-11-15 18:29:19 +08:00
|
|
|
NgZorroAntdModule,
|
2018-11-06 09:41:04 +08:00
|
|
|
PipesModule,
|
2018-10-26 11:33:25 +08:00
|
|
|
MainRoutingModule
|
|
|
|
|
],
|
|
|
|
|
declarations: [MainComponent]
|
|
|
|
|
})
|
|
|
|
|
export class MainModule { }
|