11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
import { Routes } from '@angular/router';
|
|
import {AboutComponent} from './pages/about/about.component';
|
|
import {ProjectsComponent} from './pages/projects/projects.component';
|
|
|
|
export const routes: Routes = [
|
|
{ path: '', component: AboutComponent },
|
|
{ path: 'about', component: AboutComponent},
|
|
{ path: 'projects', component: ProjectsComponent},
|
|
];
|
|
|