Files
Eventment/app/components/Profile/Profile.container.js

10 lines
207 B
JavaScript

import { connect } from 'react-redux';
import { matchStateToProps } from './Profile.stateProps.js';
import Profile from './Profile.js';
export default connect(
matchStateToProps,
null,
)(Profile);