* missing kanban routing module...
This commit is contained in:
parent
59b463c3b2
commit
97d946a324
22
src/app/kanban/kanban-routing.module.ts
Normal file
22
src/app/kanban/kanban-routing.module.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import {NgModule} from '@angular/core';
|
||||||
|
import {Routes, RouterModule} from '@angular/router';
|
||||||
|
import {KanbanBoardComponent} from "./kanban-board/kanban-board.component";
|
||||||
|
import {KanbanService} from "./shared/kanban.service";
|
||||||
|
|
||||||
|
const routes: Routes = [
|
||||||
|
{
|
||||||
|
path: 'kanban',
|
||||||
|
children: [],
|
||||||
|
component: KanbanBoardComponent,
|
||||||
|
resolve: {
|
||||||
|
kanbanBoard: KanbanService,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [RouterModule.forChild(routes)],
|
||||||
|
exports: [RouterModule]
|
||||||
|
})
|
||||||
|
export class KanbanRoutingModule {
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user