import { createRoot } from 'react-dom/client'; import { Provider } from 'react-redux'; import store from './store'; import './styles/index.scss'; import './index.css'; import App from './App.jsx'; createRoot(document.getElementById('root')).render( );