Files
recipe-manager/client/src/components/pages/Collection.tsx
2022-11-19 14:33:29 -06:00

14 lines
295 B
TypeScript

import { Page } from "../ui";
export default function Collection() {
return (
<Page>
<h1>Mikayla's collection</h1>
<p>37 recipes</p>
<p>71 ingredients</p>
<p>11 types of cuisine</p>
{/* recipes */}
</Page>
)
}