lbry-desktop/ui/component/notificationBubble/index.js
Sean Yesmunt a31f14b016 cleanup
2020-08-11 17:04:14 -04:00

12 lines
375 B
JavaScript

import { connect } from 'react-redux';
import { selectUnreadNotificationCount } from 'redux/selectors/notifications';
import { selectUser } from 'redux/selectors/user';
import NotificationBubble from './view';
const select = state => ({
unreadCount: selectUnreadNotificationCount(state),
user: selectUser(state),
});
export default connect(select)(NotificationBubble);