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