17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
import { Routes } from '@angular/router';
|
|
import {HomeComponent} from './home/home.component';
|
|
import {HouseDetailsComponent} from './house-details/house-details.component';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: HomeComponent,
|
|
title: 'Home Page',
|
|
},
|
|
{
|
|
path: 'details/:id',
|
|
component: HouseDetailsComponent,
|
|
title: 'House Details',
|
|
},
|
|
];
|