Skip to content

Instantly share code, notes, and snippets.

@rodoabad
Last active October 5, 2018 13:02
Show Gist options
  • Save rodoabad/07725f36fb512e44256467e536a0af9c to your computer and use it in GitHub Desktop.
Save rodoabad/07725f36fb512e44256467e536a0af9c to your computer and use it in GitHub Desktop.
import {UserGreeting} from './user-greeting';
import {connect} from 'react-redux';
const mapStateToProps = ({user}) => ({
firstName: user.firstName,
lastName: user.lastName
});
export default connect(mapStateToProps)(UserGreeting);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment