ajout page calendrier

This commit is contained in:
Tykayn 2025-10-04 12:58:44 +02:00 committed by tykayn
parent 8aa4e107ac
commit 20a8445a5f
14 changed files with 617 additions and 5 deletions

View file

@ -1,9 +1,14 @@
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
}
];