Files
react-editor-shopify/app/collections/[handle]/page.tsx
2026-06-03 22:38:26 -04:00

11 lines
329 B
TypeScript

"use client";
import { Render } from "@reacteditor/core";
import { collectionsConfig } from "@/editor.config";
import schema from "@/app.schema.json";
export default function CollectionPage() {
const pageData = (schema as any)["/collections/:handle"];
return <Render config={collectionsConfig as any} data={pageData} />;
}