Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Created September 28, 2018 07:01
Show Gist options
  • Save agoiabel/686013d527b2932487b95beb8681177c to your computer and use it in GitHub Desktop.
Save agoiabel/686013d527b2932487b95beb8681177c to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { connect } from 'react-redux';
export 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