import { NgModule } from '@angular/core'; import {NgZorroAntdModule} from 'ng-zorro-antd'; import { RadioComponent } from './radio.component'; @NgModule({ declarations: [ RadioComponent ], imports: [ NgZorroAntdModule ], exports: [RadioComponent,NgZorroAntdModule] }) export class RadioModule { }