tldraw/packages/www/components/editor.tsx

7 lines
154 B
TypeScript
Raw Normal View History

2021-08-10 16:12:55 +00:00
import * as React from 'react'
import { TLDraw } from '@tldraw/tldraw'
2021-08-10 16:12:55 +00:00
export default function Editor(): JSX.Element {
return <TLDraw id="tldraw" />
2021-08-10 16:12:55 +00:00
}