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