lbry-desktop/ui/component/notificationBubble/index.js

9 lines
311 B
JavaScript

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