2021-09-04 09:15:14 +00:00
|
|
|
import * as React from 'react'
|
2021-08-10 16:12:55 +00:00
|
|
|
import dynamic from 'next/dynamic'
|
2021-09-04 09:15:14 +00:00
|
|
|
const Editor = dynamic(() => import('../components/editor'), { ssr: false })
|
2021-09-04 09:14:47 +00:00
|
|
|
|
2021-09-04 09:15:14 +00:00
|
|
|
export function Index(): JSX.Element {
|
2021-08-10 16:12:55 +00:00
|
|
|
return (
|
2021-09-04 09:15:14 +00:00
|
|
|
<div>
|
|
|
|
<Editor />
|
|
|
|
</div>
|
2021-08-10 16:12:55 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-09-04 09:15:14 +00:00
|
|
|
export default Index
|