Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // src/App.js
  2.  
  3. import React from 'react';
  4. import { Provider } from 'react-redux'
  5. import store from './configureStore';
  6. import './App.css';
  7.  
  8. function App() {
  9. return (
  10. <Provider store={store}>
  11. <div className="app">
  12. Hello world!
  13. </div>
  14. </Provider>
  15. );
  16. }
  17. export default App;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement