tldraw/packages/www/components/editor.tsx
2021-09-04 13:02:13 +01:00

9 lines
175 B
TypeScript

import { TLDraw } from '@tldraw/tldraw'
interface EditorProps {
id?: string
}
export default function Editor({ id = 'home' }: EditorProps) {
return <TLDraw id={id} />
}