11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
"use client";
|
|
|
|
import { EditorShell } from "@/app/_components/editor-shell";
|
|
import { homeConfig } from "@/config/configs";
|
|
import schema from "@/app.schema.json";
|
|
|
|
export default function HomeEditorPage() {
|
|
const data = (schema as any)["/"];
|
|
return <EditorShell config={homeConfig} data={data} routeKey="/" />;
|
|
}
|