ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
16 lines (12 loc) • 505 B
text/typescript
import { NgModule } from '@angular/core';
import { NzCodeBoxComponent } from './nz-codebox.component';
import { CommonModule } from '@angular/common';
import { NzHighlightModule } from '../nz-highlight/nz-highlight.module';
import { NgZorroAntdModule } from '../../../../index.showcase';
({
imports : [ CommonModule, NzHighlightModule, NgZorroAntdModule ],
declarations: [ NzCodeBoxComponent ],
exports : [ NzCodeBoxComponent ]
})
export class NzCodeBoxModule {
}