mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-05 12:05:12 +00:00
10 lines
288 B
JavaScript
10 lines
288 B
JavaScript
import { connect } from 'react-redux';
|
|
import NavigationBar from '../components/navigation_bar';
|
|
|
|
const mapStateToProps = (state, props) => {
|
|
return {
|
|
account: state.getIn(['accounts', state.getIn(['meta', 'me'])])
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|