Create a List of Object Data Structures recipe.service.ts import { Injectable } from "@angular/core"; import { Recipe } from "./recipe.model"; @Injectable({ providedIn: 'root', }) export class RecipeService { getRecipes(): Recipe[] { ...