…with a custom shape
This example shows a custom shape in combination with tldraw sync.
import { useSyncDemo } from '@tldraw/sync'
import { Tldraw } from 'tldraw'
import 'tldraw/tldraw.css'
import { CounterShapeTool, CounterShapeUtil } from './CounterShape'
import { components, uiOverrides } from './ui'
const customShapes = [CounterShapeUtil]
const customTools = [CounterShapeTool]
export default function SyncDemoShapeExample({ roomId }: { roomId: string }) {
const store = useSyncDemo({ roomId, shapeUtils: customShapes })
return (
<div className="tldraw__editor">
<Tldraw
store={store}
shapeUtils={customShapes}
tools={customTools}
overrides={uiOverrides}
components={components}
deepLinks
/>
</div>
)
}
Is this page helpful?
Prev
Multiplayer syncNext
…with custom user data