oedb-backend/frontend/src/app/app.routes.ts

25 lines
589 B
TypeScript
Raw Normal View History

2025-10-02 22:53:50 +02:00
import { Routes } from '@angular/router';
import {Home} from './pages/home/home';
2025-10-04 12:58:44 +02:00
import { Agenda } from './pages/agenda/agenda';
import { NouvellesCategories } from './pages/nouvelles-categories/nouvelles-categories';
import { UnlocatedEventsPage } from './pages/unlocated-events/unlocated-events';
2025-10-02 22:53:50 +02:00
export const routes: Routes = [
{
path : '',
component: Home
2025-10-04 12:58:44 +02:00
},
{
path : 'agenda',
component: Agenda
},
{
path : 'nouvelles-categories',
component: NouvellesCategories
},
{
path : 'unlocated-events',
component: UnlocatedEventsPage
2025-10-02 22:53:50 +02:00
}
];