Created
February 28, 2018 11:08
-
-
Save rohanBagchi/abec10db82ca14ceddc4fbb0f63f48f3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { connect } from 'react-redux'; | |
import App from './App'; | |
function mapStateToProps(state) { | |
return {}; | |
} | |
function mapDispatchToProps(dispatch) { | |
return {}; | |
} | |
export default connect( | |
mapStateToProps, | |
mapDispatchToProps | |
)(App); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment