import React from "react"; import Instructions from "./Instructions"; import IngredientsList from "./IngredientsList"; export default function Recipe({ name, ingredients, steps }) { return (

{name}

); }