2019-04-21 03:32:16 +09:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import NavigationBar from '../components/navigation_bar';
|
2022-10-11 17:17:04 +09:00
|
|
|
import { me } from 'flavours/glitch/initial_state';
|
2019-04-21 03:32:16 +09:00
|
|
|
|
|
|
|
const mapStateToProps = state => {
|
|
|
|
return {
|
|
|
|
account: state.getIn(['accounts', me]),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|