05b0b5d8
Yarik
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { Routes, RouterModule } from '@angular/router';
import { Dashboard } from './dashboard.component';
import { ModuleWithProviders } from '@angular/core';
// noinspection TypeScriptValidateTypes
export const routes: Routes = [
{
path: '',
component: Dashboard,
children: [
//{ path: 'treeview', component: TreeViewComponent }
]
}
];
export const routing: ModuleWithProviders = RouterModule.forChild(routes);
|