8 lines
330 B
TypeScript
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} />
|
|
}
|