Files
pic/webui/src/main.jsx
T
Constantin 2277b11563 init
2025-09-12 23:04:52 +03:00

11 lines
229 B
React

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)