tldraw/packages/www/pages/index.tsx

14 lines
260 B
TypeScript
Raw Normal View History

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