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

10 lines
309 B
JavaScript
Raw Normal View History

2020-08-10 22:47:39 +02:00
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);