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

10 lines
286 B
TypeScript

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