6 lines
154 B
TypeScript
6 lines
154 B
TypeScript
import * as React from 'react'
|
|
import { TLDraw } from '@tldraw/tldraw'
|
|
|
|
export default function Editor(): JSX.Element {
|
|
return <TLDraw id="tldraw" />
|
|
}
|