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