Skip to content

Instantly share code, notes, and snippets.

@yaralahruthik
Created December 7, 2021 16:24
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 yaralahruthik/d16bd34192aa8823efe3f3c918eae0b6 to your computer and use it in GitHub Desktop.
Save yaralahruthik/d16bd34192aa8823efe3f3c918eae0b6 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';
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment