Files
tolaria/src/components/EditorContent.tsx
2026-04-08 14:01:19 +02:00

8 lines
330 B
TypeScript

import { EditorContentLayout } from './editor-content/EditorContentLayout'
import { useEditorContentModel, type EditorContentProps } from './editor-content/useEditorContentModel'
export function EditorContent(props: EditorContentProps) {
const model = useEditorContentModel(props)
return <EditorContentLayout {...model} />
}