2025-07-08 11:16:51 -07:00
|
|
|
import { Provider } from "./components/ui/provider"
|
|
|
|
|
import { StrictMode } from 'react'
|
|
|
|
|
import { createRoot } from 'react-dom/client'
|
|
|
|
|
import './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'
|
|
|
|
|
|
|
|
|
|
createRoot(document.getElementById('root')).render(
|
|
|
|
|
<StrictMode>
|
|
|
|
|
<Provider>
|
|
|
|
|
<App />
|
|
|
|
|
</Provider>
|
|
|
|
|
</StrictMode>,
|
|
|
|
|
)
|