mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
|
|
import { createRoot } from 'react-dom/client'
|
||
|
|
import 'tailwindcss/tailwind.css'
|
||
|
|
import App from 'components/App'
|
||
|
|
|
||
|
|
const container = document.getElementById('root') as HTMLDivElement
|
||
|
|
const root = createRoot(container)
|
||
|
|
|
||
|
|
root.render(<App />)
|