meals-made-easy-app/src/app/app.routes.ts
2025-12-15 12:32:26 -06:00

15 lines
351 B
TypeScript

import { Routes } from '@angular/router';
import { RecipeView } from './recipe-view/recipe-view.component';
import { RecipesPage } from './recipes-page/recipes-page';
export const routes: Routes = [
{
path: '',
component: RecipesPage,
},
{
path: 'recipes/:username/:slug',
component: RecipeView,
},
];