link-stack/apps/leafcutter/app/(main)/create/page.tsx

11 lines
276 B
TypeScript
Raw Normal View History

2023-07-11 13:48:05 +00:00
import { getTemplates } from "app/_lib/opensearch";
2024-06-05 08:52:41 +02:00
import { Create } from "@link-stack/leafcutter-ui";
2023-02-13 13:46:56 +00:00
2023-06-28 09:09:45 +00:00
export default async function Page() {
2023-05-25 12:37:14 +00:00
const templates = await getTemplates(100);
2023-02-13 13:46:56 +00:00
2023-06-28 10:52:23 +00:00
return <Create templates={templates} />;
2023-07-11 13:48:05 +00:00
}
2023-08-25 07:11:33 +00:00
export const dynamic = "force-dynamic";