99730b4fe2
* Adds multiplayer support * Update liveblocks.tsx * Update liveblocks.tsx * Create chaos.tsx * Fix undo redo, add merge state * Update multiplayer-editor.tsx * Adds secret room * Update chaos.tsx * Moves shhh to shhhmp * Fix accidentally deleting the editing shape * Fix bug where a selected shape is deleted by another user. * Remove relative path * Tweak editor * Remove chaos endpoint * Adds error state for maximum connections, fixes selectedIds bug on new rooms
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'} />
|
|
</>
|
|
)
|
|
}
|