import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { PlatformRoutingModule } from './platform-routing.module'; import { PlatformComponent } from './platform.component'; import { PlatformService } from './shared/platform.service'; @NgModule({ imports: [ CommonModule, FormsModule, PlatformRoutingModule, NgZorroAntdModule.forRoot() ], declarations: [PlatformComponent], providers: [PlatformService] }) export class PlatformModule { }