9 lines
175 B
TypeScript
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} />
|
|
}
|