ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
14 lines (12 loc) • 477 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { NzColComponent } from './nz-col.component';
import { NzColDirective } from './nz-col.directive';
import { NzRowComponent } from './nz-row.component';
({
declarations: [ NzRowComponent, NzColDirective, NzColComponent ],
exports : [ NzRowComponent, NzColDirective, NzColComponent ],
imports : [ CommonModule ]
})
export class NzGridModule {
}