2016-09-13 10:24:40 +10:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import NavigationBar from '../components/navigation_bar';
|
2017-10-31 13:27:48 +11:00
|
|
|
import { me } from '../../../initial_state';
|
2016-09-13 10:24:40 +10:00
|
|
|
|
2017-06-24 00:05:04 +10:00
|
|
|
const mapStateToProps = state => {
|
2017-01-09 22:37:15 +11:00
|
|
|
return {
|
2017-10-31 13:27:48 +11:00
|
|
|
account: state.getIn(['accounts', me]),
|
2017-01-09 22:37:15 +11:00
|
|
|
};
|
|
|
|
};
|
2016-09-13 10:24:40 +10:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|