Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save full-stack-concepts/a525e1eb6218c23af9f7ebef21f8856d to your computer and use it in GitHub Desktop.
Save full-stack-concepts/a525e1eb6218c23af9f7ebef21f8856d to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider} from 'react-redux';
import { store } from './Store/';
import App from './App';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(
<React.StrictMode>
<Provider store={store}>
<App />
</Provider>
</React.StrictMode>,
document.getElementById('root')
);
reportWebVitals();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment