tldraw/packages/dev/src/app.tsx

10 lines
230 B
TypeScript
Raw Normal View History

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