2022-11-09 17:57:35 +00:00
|
|
|
import { Editor } from '../EditorNew/Editor'
|
2022-11-15 16:16:31 +00:00
|
|
|
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 (
|
2022-11-15 16:16:31 +00:00
|
|
|
<ShowOnlyOnClient>
|
2022-11-09 17:57:35 +00:00
|
|
|
<Editor />
|
2022-11-15 16:16:31 +00:00
|
|
|
</ShowOnlyOnClient>
|
2022-09-09 11:53:35 +00:00
|
|
|
)
|
|
|
|
}
|
2022-11-01 19:27:43 +00:00
|
|
|
|
|
|
|
export default CreateView
|