link-stack/apps/leafcutter/app/(main)/create/page.tsx
2024-06-05 08:52:41 +02:00

10 lines
276 B
TypeScript

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