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