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.

index.tsx 320B

123456789101112131415
  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() {
  6. return (
  7. <>
  8. <Head>
  9. <title>tldraw</title>
  10. </Head>
  11. <Editor />
  12. </>
  13. )
  14. }