tldraw/packages/dev/src/app.tsx

7 lines
141 B
TypeScript
Raw Normal View History

2021-08-10 17:19:30 +00:00
import * as React from 'react'
2021-09-08 11:53:52 +00:00
import Imperative from './imperative'
2021-08-10 17:19:30 +00:00
export default function App(): JSX.Element {
2021-09-08 11:53:52 +00:00
return <Imperative />
2021-08-10 17:19:30 +00:00
}