File size: 277 Bytes
d97b8f9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import 'react-day-picker/dist/style.css'
import './index.css'
import './styles/dashboard.css'
import './styles/date-picker-fix.css'

createRoot(document.getElementById("root")!).render(<App />);