11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import { Editor } from '#/editor/editor'
|
|
import { render } from 'hono/jsx/dom'
|
|
import './index.css'
|
|
|
|
const App = () => {
|
|
return <Editor />
|
|
}
|
|
|
|
const root = document.getElementById('root')!
|
|
render(<App />, root)
|