ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
15 lines (13 loc) • 608 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { NzRadioButtonComponent } from './nz-radio-button.component';
import { NzRadioGroupComponent } from './nz-radio-group.component';
import { NzRadioComponent } from './nz-radio.component';
({
imports : [ CommonModule, FormsModule ],
exports : [ NzRadioComponent, NzRadioButtonComponent, NzRadioGroupComponent ],
declarations: [ NzRadioComponent, NzRadioButtonComponent, NzRadioGroupComponent ]
})
export class NzRadioModule {
}