bigbuffet-rw/app/gabsocial/features/ui/components/notifications_counter_icon.js
2020-03-27 15:59:38 -05:00

9 lines
268 B
JavaScript

import { connect } from 'react-redux';
import IconWithBadge from 'gabsocial/components/icon_with_badge';
const mapStateToProps = state => ({
count: state.getIn(['notifications', 'unread']),
id: 'bell',
});
export default connect(mapStateToProps)(IconWithBadge);