mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 16:18:07 +01:00
9 lines
290 B
React
9 lines
290 B
React
|
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);
|