2019-01-18 18:03:45 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
|
|
import { DashboardComponent } from './dashboard.component';
|
2019-03-01 16:15:25 +01:00
|
|
|
import { QuickWizardCreateAdd } from './quick-wizard-create-add/quick-wizard-create-add.component';
|
2019-01-18 18:03:45 +01:00
|
|
|
|
|
|
|
const routes: Routes = [
|
2019-05-16 18:11:41 +02:00
|
|
|
{
|
|
|
|
path: '',
|
|
|
|
component: DashboardComponent,
|
|
|
|
data: {
|
|
|
|
breadcrumb: true
|
|
|
|
},
|
|
|
|
},
|
2019-01-18 18:03:45 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [RouterModule.forChild(routes)],
|
|
|
|
exports: [RouterModule]
|
|
|
|
})
|
2019-03-06 15:41:24 +01:00
|
|
|
export class DashboardRoutingModule { }
|