import 'assets/index.css'; import AppRoutes from 'AppRoutes'; import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import store from 'store'; ReactDOM.render( , document.querySelector('#root'), ); // setting the Store for the cypress if (window.Cypress) { window.store = store; }