mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
10 lines
280 B
JavaScript
10 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);
|