This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-04-20 11:32:16 -07:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import NavigationBar from '../components/navigation_bar';
|
2022-10-11 01:17:04 -07:00
|
|
|
import { me } from 'flavours/glitch/initial_state';
|
2019-04-20 11:32:16 -07:00
|
|
|
|
|
|
|
const mapStateToProps = state => {
|
|
|
|
return {
|
|
|
|
account: state.getIn(['accounts', me]),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|