Files
Web-Frontend/client/src/main.jsx
T
vkuchenik 0190bf7c72 dark mode
forgot to switch branches. Started working on dark mode by creating a theme for the app
2025-07-10 14:59:13 +00:00

17 lines
441 B
React

import { Provider } from "./components/ui/provider"
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import 'react-grid-layout/css/styles.css'
import 'react-resizable/css/styles.css'
import App from './App.jsx'
import theme from './theme.js'
createRoot(document.getElementById('root')).render(
<StrictMode>
<Provider theme={theme}>
<App />
</Provider>
</StrictMode>,
)