Activity #33: Angular Recipe Grid
recipe.service.ts
import { Injectable } from '@angular/core';
import { RecipeModel } from '../components/recipe';
@Injectable({
providedIn: 'root'
})
export class RecipeService {
private recipes: RecipeModel[] = [
{
id: 1,
name: ...
jennyfaye.hashnode.dev3 min read