2023-07-11 13:48:05 +00:00
|
|
|
import { getTemplates } from "app/_lib/opensearch";
|
2023-06-28 09:09:45 +00:00
|
|
|
import { Create } from "./_components/Create";
|
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
|
|
|
}
|