24 lines
589 B
TypeScript
24 lines
589 B
TypeScript
import { Routes } from '@angular/router';
|
|
import {Home} from './pages/home/home';
|
|
import { Agenda } from './pages/agenda/agenda';
|
|
import { NouvellesCategories } from './pages/nouvelles-categories/nouvelles-categories';
|
|
import { UnlocatedEventsPage } from './pages/unlocated-events/unlocated-events';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path : '',
|
|
component: Home
|
|
},
|
|
{
|
|
path : 'agenda',
|
|
component: Agenda
|
|
},
|
|
{
|
|
path : 'nouvelles-categories',
|
|
component: NouvellesCategories
|
|
},
|
|
{
|
|
path : 'unlocated-events',
|
|
component: UnlocatedEventsPage
|
|
}
|
|
];
|