tldraw/packages/dev/src/basic.tsx

7 lines
142 B
TypeScript
Raw Normal View History

import * as React from 'react'
import Editor from './components/editor'
2021-09-09 12:32:08 +00:00
export default function Basic(): JSX.Element {
return <Editor />
}