b68a4681e1
* 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
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import * as React from 'react'
|
|
import Head from 'next/head'
|
|
import dynamic from 'next/dynamic'
|
|
const MultiplayerEditor = dynamic(() => import('components/multiplayer-editor'), { ssr: false })
|
|
|
|
export default function Room(): JSX.Element {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>tldraw</title>
|
|
</Head>
|
|
<MultiplayerEditor id={'shhhmp'} />
|
|
</>
|
|
)
|
|
}
|