nastedmenu.module.ts 384 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { NastedmenuRoutingModule } from './nastedmenu-routing.module';
import { Nasted1Component } from './nasted1/nasted1.component';


@NgModule({
  declarations: [
    Nasted1Component
  ],
  imports: [
    CommonModule,
    NastedmenuRoutingModule
  ]
})
export class NastedmenuModule { }