tldraw/www/pages/shhh.tsx
Steve Ruiz b68a4681e1
[improvement] repo shuffle (#214)
* move folders out of packages

* Remove custom yarn stuff, remove duplicate readme

* Remove stitches config

* Add README script.

* bump deps

* Fix script

* Update package.json
2021-11-02 11:46:25 +00:00

14 lines
301 B
TypeScript

import dynamic from 'next/dynamic'
const Editor = dynamic(() => import('components/editor'), { ssr: false })
import Head from 'next/head'
export default function Shhh(): JSX.Element {
return (
<>
<Head>
<title>tldraw</title>
</Head>
<Editor id="home" />
</>
)
}