Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Created February 28, 2018 11:08
Show Gist options
  • Save rohanBagchi/abec10db82ca14ceddc4fbb0f63f48f3 to your computer and use it in GitHub Desktop.
Save rohanBagchi/abec10db82ca14ceddc4fbb0f63f48f3 to your computer and use it in GitHub Desktop.
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