You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

shhh.tsx 334B

12345678910111213141516
  1. // import Editor from "components/editor"
  2. import Head from 'next/head'
  3. import dynamic from 'next/dynamic'
  4. const Editor = dynamic(() => import('components/editor'), { ssr: false })
  5. export default function Home(): JSX.Element {
  6. return (
  7. <>
  8. <Head>
  9. <title>tldraw</title>
  10. </Head>
  11. <Editor />
  12. </>
  13. )
  14. }