tldraw/pages/shhh.tsx

16 lines
306 B
TypeScript
Raw Normal View History

2021-06-20 22:01:40 +00:00
import Head from 'next/head'
import dynamic from 'next/dynamic'
const Editor = dynamic(() => import('components/editor'), { ssr: false })
2021-06-21 21:35:28 +00:00
export default function Home(): JSX.Element {
2021-06-20 22:01:40 +00:00
return (
<>
<Head>
<title>tldraw</title>
</Head>
2021-07-07 13:03:53 +00:00
<Editor roomId="home" />
2021-06-20 22:01:40 +00:00
</>
)
}