14 lines
406 B
React
Raw Normal View History

import React from "react";
import Instructions from "./Instructions";
import IngredientsList from "./IngredientsList";
export default function Recipe({ name, ingredients, steps }) {
return (
<section id={name.toLowerCase().replace(/ /g, "-")}>
<h1>{name}</h1>
<IngredientsList list={ingredients} />
<Instructions title='Cooking Instructions' steps={steps} />
</section>
);
}