mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
21 lines
539 B
JavaScript
21 lines
539 B
JavaScript
import { connect } from 'react-redux';
|
|
import { makeGetAccount } from '../../../selectors';
|
|
import Account from '../components/account';
|
|
|
|
const makeMapStateToProps = () => {
|
|
const getAccount = makeGetAccount();
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
account: getAccount(state, props.id),
|
|
me: state.getIn(['timelines', 'me'])
|
|
});
|
|
|
|
return mapStateToProps;
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
//
|
|
});
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Account);
|