8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { HomeComponent } from './home/home.component';
|
|
|
|
export const routes: Routes = [
|
|
{ path: 'home', component: HomeComponent },
|
|
{ path: '', redirectTo: '/home', pathMatch: 'full' },
|
|
];
|