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