Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Created September 28, 2018 06:54
Show Gist options
  • Save agoiabel/982e71ca1f38b879f6aa6740f929596b to your computer and use it in GitHub Desktop.
Save agoiabel/982e71ca1f38b879f6aa6740f929596b to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { connect } from 'react-redux';
class MyComponent extends Component {}
const mapStateToProps = state => {
return {}
}
const mapDispatchToProps = dispatch => {
return {}
}
export default connect(mapStateToProps, mapDispatchToProps)(MyComponent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment