14 lines
321 B
TypeScript
14 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>
|
||
|
|
);
|
||
|
|
}
|