tldraw/www/pages/shhh.tsx

15 lines
301 B
TypeScript
Raw Normal View History

2021-09-04 12:02:13 +00:00
import dynamic from 'next/dynamic'
const Editor = dynamic(() => import('components/editor'), { ssr: false })
2021-09-06 13:37:48 +00:00
import Head from 'next/head'
2021-09-04 12:02:13 +00:00
export default function Shhh(): JSX.Element {
2021-09-06 13:37:48 +00:00
return (
<>
<Head>
<title>tldraw</title>
</Head>
<Editor id="home" />
</>
)
2021-09-04 12:02:13 +00:00
}