mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-12-01 11:19:04 +01:00
12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import NavigationBar from '../components/navigation_bar';
|
||
|
import { me } from '../../../initial_state';
|
||
|
|
||
|
const mapStateToProps = state => {
|
||
|
return {
|
||
|
account: state.getIn(['accounts', me]),
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default connect(mapStateToProps)(NavigationBar);
|