Created
January 7, 2019 22:50
-
-
Save wesleymonaro/21e6424432e70a899a7bf59d04a6ee1d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from "react"; | |
import { Provider } from "react-redux"; | |
import store from "./store"; | |
class App extends Component { | |
render() { | |
return ( | |
<Provider store={store}> | |
<div className="App"> | |
<header className="App-header">Teste Redux</header> | |
</div> | |
</Provider> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment