mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
8 lines
272 B
JavaScript
8 lines
272 B
JavaScript
import { connect } from 'react-redux';
|
|
import NavigationBar from '../components/navigation_bar';
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
account: state.getIn(['accounts', state.getIn(['meta', 'me'])])
|
|
});
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|