mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 14:09:31 +02:00
feat: use vite and ts
This commit is contained in:
8
src/index.tsx
Normal file
8
src/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
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 />)
|
Reference in New Issue
Block a user