18 lines
491 B
JavaScript
18 lines
491 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { commonProfileStateToProps } from './Profile.container.js';
|
|
import EditProfile from './EditProfile.js';
|
|
|
|
const matchStateToProps = (dispatch) => {
|
|
const commonProps = commonProfileStateToProps(state);
|
|
const profile = getProfile(state);
|
|
|
|
return {
|
|
...commonProps,
|
|
firstName: profile.get('firstName'),
|
|
lastName: profile.get('lastName'),
|
|
};
|
|
};
|
|
|
|
export default connect(matchStateToProps, null)(EditProfile);
|