UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

16 lines (14 loc) 608 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { NzLocaleModule } from '../locale/index'; import { NzRadioModule } from '../radio/nz-radio.module'; import { NzSelectModule } from '../select/nz-select.module'; import { NzCalendarComponent } from './nz-calendar.component'; @NgModule({ imports : [ CommonModule, NzSelectModule, NzRadioModule, FormsModule, NzLocaleModule ], declarations: [ NzCalendarComponent ], exports : [ NzCalendarComponent ] }) export class NzCalendarModule { }