link-stack/apps/link/app/(main)/leafcutter/create/page.tsx
Darren Clarke c620e4bf25 Flatten
2023-08-25 07:11:33 +00:00

13 lines
321 B
TypeScript

// import { getTemplates } from "app/_lib/opensearch";
import { Create } from "leafcutter-common";
import { Box } from "@mui/material";
export default async function Page() {
const templates = []; // await getTemplates(100);
return (
<Box sx={{ p: 3 }}>
<Create templates={templates} />
</Box>
);
}