Skip to content

Instantly share code, notes, and snippets.

@LiorB-D
Created April 1, 2022 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LiorB-D/26dc730777f92fb051dbbfce70e2cd09 to your computer and use it in GitHub Desktop.
Save LiorB-D/26dc730777f92fb051dbbfce70e2cd09 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
// Redux Import
import { Provider } from 'react-redux';
import reportWebVitals from './reportWebVitals';
// Store
import configureStore from './store/configureStore';
const store = configureStore();
ReactDOM.render(
// Provider
<Provider store={store}>
<App />
</Provider>,
document.getElementById('root')
);
reportWebVitals();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment