blob: 4aeea4c37d287a17de9d5852581b181de8573d8f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { connect } from 'react-redux';
import NavigationBar from '../components/navigation_bar';
const mapStateToProps = (state, props) => ({
account: state.getIn(['timelines', 'accounts', state.getIn(['timelines', 'me'])])
});
export default connect(mapStateToProps)(NavigationBar);
|