8 lines
283 B
TypeScript
8 lines
283 B
TypeScript
import PageEditor from '@/components/page-editor';
|
|
|
|
// Editor for /policies/[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="/policies/[handle]" />;
|
|
}
|