Skip to content

Instantly share code, notes, and snippets.

@bnhansn
Last active October 20, 2016 17:35
Show Gist options
  • Save bnhansn/2e268c0e94b51d8001caa27e236b81c6 to your computer and use it in GitHub Desktop.
Save bnhansn/2e268c0e94b51d8001caa27e236b81c6 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 './containers/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