the great renaming
This commit is contained in:
@@ -1,3 +1,20 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { DashboardComponent } from './pages/dashboard/dashboard.component';
|
||||
import { HomeComponent } from './pages/home/home.component';
|
||||
import { ERouteKey } from './types/route-key';
|
||||
import { InteractionsComponent } from './pages/interactions/interactions.component';
|
||||
|
||||
export const routes: Routes = [];
|
||||
export const ROUTES: Routes = [
|
||||
{
|
||||
path: ERouteKey.Dashboard,
|
||||
component: DashboardComponent
|
||||
},
|
||||
{
|
||||
path: ERouteKey.Interactions + '/:chibiId',
|
||||
component: InteractionsComponent
|
||||
},
|
||||
{
|
||||
path: '**',
|
||||
component: HomeComponent
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user