Files
react-editor-shopify-nextjs/app/about/editor/page.tsx
2026-06-06 13:46:56 -04:00

7 lines
185 B
TypeScript

import PageEditor from "@/components/page-editor";
import page from "../page.json";
export default function EditorPage() {
return <PageEditor page={page} routeKey="/app/about" />;
}