14 lines
295 B
TypeScript
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>
|
|
)
|
|
} |