tldraw/pages/index.tsx

16 lines
320 B
TypeScript
Raw Normal View History

// import Editor from "components/editor"
import Head from 'next/head'
import dynamic from 'next/dynamic'
const Editor = dynamic(() => import('components/editor'), { ssr: false })
2021-05-09 12:03:39 +00:00
export default function Home() {
2021-05-09 13:04:42 +00:00
return (
<>
<Head>
<title>tldraw</title>
</Head>
2021-05-09 13:04:42 +00:00
<Editor />
</>
2021-05-09 13:04:42 +00:00
)
2021-05-09 12:03:39 +00:00
}