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.
| 12345678910111213141516 |
- // import Editor from "components/editor"
- import Head from 'next/head'
- import dynamic from 'next/dynamic'
-
- const Editor = dynamic(() => import('components/editor'), { ssr: false })
-
- export default function Home(): JSX.Element {
- return (
- <>
- <Head>
- <title>tldraw</title>
- </Head>
- <Editor />
- </>
- )
- }
|