Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Created February 28, 2018 11:05
Show Gist options
  • Select an option

  • Save rohanBagchi/0601cea18d9da3f7fc42fcc7c001fac3 to your computer and use it in GitHub Desktop.

Select an option

Save rohanBagchi/0601cea18d9da3f7fc42fcc7c001fac3 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 './index.css';
import './lib/bootstrap.min.css';
import AppContainer from './AppContainer';
import registerServiceWorker from './registerServiceWorker';
ReactDOM.render(
<Provider store={store}>
<AppContainer />
</Provider>,
document.getElementById('root')
);
registerServiceWorker();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment