UNPKG

truly-ui

Version:
17 lines (15 loc) 360 B
import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router' import { DropDownListDemo } from './dropdownlistdemo.component'; @NgModule( { imports: [ RouterModule.forChild( [ { path: '', component: DropDownListDemo } ] ) ], exports: [ RouterModule ] } ) export class DropDownListDemoRoutingModule { }