10 lines
207 B
JavaScript
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);
|