UNPKG

ng-ytl-zorro-antd

Version:

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

14 lines (12 loc) 388 B
import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; // import { NzGlobalResolver } from '../app.resolver'; import { NzIntroComponent } from './nz-intro.component'; @NgModule({ imports: [ RouterModule.forChild([ { path: '', component: NzIntroComponent } ]) ], exports: [ RouterModule ] }) export class NzIntroRoutingModule { }