basicui-routing.module.ts 767 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { DropdownComponent } from './dropdown/dropdown.component';
import { ModalComponent } from './modal/modal.component';
import { OffcanvasComponent } from './offcanvas/offcanvas.component';
import { TooltipPopoversComponent } from './tooltip-popovers/tooltip-popovers.component';

const routes: Routes = [
{path:"basicui/dropdown",component:DropdownComponent},
{path:"basicui/modal",component:ModalComponent},
{path:"basicui/offcanvas",component:OffcanvasComponent},
{path:"basicui/tooltip-popovers",component:TooltipPopoversComponent},
];

@NgModule({
  imports: [RouterModule.forChild(routes)],
  exports: [RouterModule]
})
export class BasicuiRoutingModule { }