Activity 33: Angular Recipe Grid
recipe.service.ts
import { Injectable } from '@angular/core';
import { Observable, of } from 'rxjs';
import { Recipe } from '../Models/recipe.model';
@Injectable({
providedIn: 'root'
})
export class RecipeService {
private recipes: Recipe[] = [
...
zaack.hashnode.dev4 min read