webapp/src/components/Views/Create.tsx

13 lines
251 B
TypeScript

import { Editor } from '../EditorNew/Editor'
import { ShowOnlyOnClient } from '../_shared/ShowOnlyOnClient'
export const CreateView = () => {
return (
<ShowOnlyOnClient>
<Editor />
</ShowOnlyOnClient>
)
}
export default CreateView