Files
shopify-react-editor-template/app/collections/[handle]/editor/page.tsx
T
2026-08-09 16:00:10 -04:00

8 lines
289 B
TypeScript

import PageEditor from '@/components/page-editor';
// Editor for /collections/[handle]. Sitting under the route it edits means the preview
// resolves the same params the public page gets.
export default function EditorPage() {
return <PageEditor routeKey="/collections/[handle]" />;
}