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