oedb-backend/frontend/src/app/app.routes.ts
2025-10-04 12:58:44 +02:00

14 lines
263 B
TypeScript

import { Routes } from '@angular/router';
import {Home} from './pages/home/home';
import { Agenda } from './pages/agenda/agenda';
export const routes: Routes = [
{
path : '',
component: Home
},
{
path : 'agenda',
component: Agenda
}
];