mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 13:34:30 +00:00
9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
import { connect } from 'react-redux';
|
|
import NavigationBar from '../components/navigation_bar';
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
account: state.getIn(['timelines', 'accounts', state.getIn(['timelines', 'me'])])
|
|
});
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|