mirror of
https://github.com/funamitech/mastodon
synced 2024-12-02 00:38:33 +09:00
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
import { connect } from 'react-redux';
|
|
import NavigationBar from '../components/navigation_bar';
|
|
|
|
const mapStateToProps = state => {
|
|
return {
|
|
account: state.getIn(['accounts', state.getIn(['meta', 'me'])]),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|