vite entry point

This commit is contained in:
2025-12-03 20:03:03 +02:00
parent bc8ed01e65
commit 39169d31ef
+11
View File
@@ -0,0 +1,11 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './i18n'
import './index.css'
import App from './App'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)