Switching to ng2 side menu (#65)

Closes #63
This commit is contained in:
Nejc Zdovc
2016-07-11 17:14:56 +02:00
committed by József Farkas
parent d20101c981
commit 036c2d0a70
26 changed files with 707 additions and 548 deletions
+13
View File
@@ -0,0 +1,13 @@
import { RouterConfig } from '@angular/router';
import { MacroComponent } from './macro.component';
export const macroRoutes: RouterConfig = [
{
path: 'macro',
component: MacroComponent
},
{
path: 'macro/:id',
component: MacroComponent
}
];