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