link-stack/apps/leafcutter/app/(main)/create/page.tsx
Darren Clarke b09cc82544 WIP 5
2024-03-20 17:51:21 +01:00

10 lines
264 B
TypeScript

import { getTemplates } from "app/_lib/opensearch";
import { Create } from "leafcutter-ui";
export default async function Page() {
const templates = await getTemplates(100);
return <Create templates={templates} />;
}
export const dynamic = "force-dynamic";