2025-07-08 11:16:51 -07:00
|
|
|
import { Provider } from "./components/ui/provider"
|
|
|
|
|
import { StrictMode } from 'react'
|
|
|
|
|
import { createRoot } from 'react-dom/client'
|
2025-07-10 08:11:24 -07:00
|
|
|
import './css/index.css'
|
2025-07-09 15:20:29 -07:00
|
|
|
import 'react-grid-layout/css/styles.css'
|
|
|
|
|
import 'react-resizable/css/styles.css'
|
2025-07-08 11:16:51 -07:00
|
|
|
import App from './App.jsx'
|
2025-07-10 07:49:03 -07:00
|
|
|
import theme from './theme.js'
|
2025-07-08 11:16:51 -07:00
|
|
|
|
|
|
|
|
createRoot(document.getElementById('root')).render(
|
|
|
|
|
<StrictMode>
|
2025-07-10 07:49:03 -07:00
|
|
|
<Provider theme={theme}>
|
2025-07-08 11:16:51 -07:00
|
|
|
<App />
|
|
|
|
|
</Provider>
|
|
|
|
|
</StrictMode>,
|
|
|
|
|
)
|