import { Handlers, PageProps } from "$fresh/server.ts"; import { RecipeCard } from "@components/RecipeCard.tsx"; import { MainLayout } from "@components/layouts/main.tsx"; import { Recipe } from "@lib/recipes.ts"; import { getRecipes } from "../api/recipes/index.ts"; export const handler: Handlers = { async GET(_, ctx) { const recipes = await getRecipes(); return ctx.render(recipes); }, }; export default function Greet(props: PageProps) { return (
{props.data?.map((doc) => { return ; })}
); }