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

9 lines
309 B
JavaScript

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