webapp/src/components/Views/Create.tsx

13 lines
251 B
TypeScript
Raw Normal View History

2022-11-09 17:57:35 +00:00
import { Editor } from '../EditorNew/Editor'
import { ShowOnlyOnClient } from '../_shared/ShowOnlyOnClient'
2022-10-18 15:50:49 +00:00
2022-11-01 19:27:43 +00:00
export const CreateView = () => {
2022-09-09 11:53:35 +00:00
return (
<ShowOnlyOnClient>
2022-11-09 17:57:35 +00:00
<Editor />
</ShowOnlyOnClient>
2022-09-09 11:53:35 +00:00
)
}
2022-11-01 19:27:43 +00:00
export default CreateView