tldraw/pages/index.tsx
2021-05-09 22:22:25 +01:00

9 lines
128 B
TypeScript

import Editor from "components/editor"
export default function Home() {
return (
<div>
<Editor />
</div>
)
}