20 lines
503 B
TypeScript
20 lines
503 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { RecipePage } from './recipe-page/recipe-page';
|
|
import { RecipesPage } from './recipes-page/recipes-page';
|
|
import { RecipesSearchPage } from './recipes-search-page/recipes-search-page';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: RecipesPage,
|
|
},
|
|
{
|
|
path: 'recipes-search',
|
|
component: RecipesSearchPage,
|
|
},
|
|
{
|
|
path: 'recipes/:username/:slug',
|
|
component: RecipePage,
|
|
},
|
|
];
|