14 lines
406 B
JavaScript
14 lines
406 B
JavaScript
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>
|
|
);
|
|
}
|