Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import React, { PropTypes } from 'react';
  2. import { Provider } from 'react-redux';
  3. import App from './App';
  4.  
  5. const Root = ({ store }) => (
  6. <Provider store={store}>
  7. <App />
  8. </Provider>
  9. );
  10.  
  11. Root.propTypes = {
  12. store: PropTypes.object.isRequired,
  13. };
  14.  
  15. export default Root;
Add Comment
Please, Sign In to add comment