You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

editor.tsx 175B

123456789
  1. import { TLDraw } from '@tldraw/tldraw'
  2. interface EditorProps {
  3. id?: string
  4. }
  5. export default function Editor({ id = 'home' }: EditorProps) {
  6. return <TLDraw id={id} />
  7. }