b467873f0b
## Issue Closes 5664: notification bell shows is_read, not is_seen
11 lines
377 B
JavaScript
11 lines
377 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectUnseenNotificationCount } from 'redux/selectors/notifications';
|
|
import { selectUser } from 'redux/selectors/user';
|
|
import NotificationBubble from './view';
|
|
|
|
const select = (state) => ({
|
|
unseenCount: selectUnseenNotificationCount(state),
|
|
user: selectUser(state),
|
|
});
|
|
|
|
export default connect(select)(NotificationBubble);
|