mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-08 16:04:49 +00:00
11 lines
288 B
JavaScript
11 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);
|