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