Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Created February 26, 2018 07:22
Show Gist options
  • Save rohanBagchi/bef30749ea27ca6e4ae59e2b760de744 to your computer and use it in GitHub Desktop.
Save rohanBagchi/bef30749ea27ca6e4ae59e2b760de744 to your computer and use it in GitHub Desktop.
import React from 'react';
import { connect } from 'react-redux';
const User = props => (
<div>
{props.user.name}
</div>
);
function mapStateToProps(state) {
return {
user: state.user_reducer.user,
};
}
export default connect(
mapStateToProps,
null
)(User);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment