14 lines
263 B
TypeScript
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
|
|
}
|
|
];
|