import React, { forwardRef, lazy, Suspense } from 'react' import LexicalEditorView from '../LexicalEditorView' import type { Props } from './LexicalEditor' const LexicalEditor = lazy(() => import('./LexicalEditor')) const LazyLexicalEditor = forwardRef( function LazyLexicalEditor(props, ref) { return ( }> ) } ) export default LazyLexicalEditor