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

9 lines
230 B
TypeScript
Raw Normal View History

2023-07-18 12:26:57 +00:00
import { getTemplates } from "app/_lib/opensearch";
import { Create } from "./_components/Create";
export default async function Page() {
const templates = await getTemplates(100);
return <Create templates={templates} />;
}