2019-05-23 02:35:22 +03:00
|
|
|
import { connect } from 'react-redux';
|
2023-05-23 18:15:17 +03:00
|
|
|
|
2023-05-09 04:11:56 +03:00
|
|
|
import { IconWithBadge } from 'mastodon/components/icon_with_badge';
|
2019-05-23 02:35:22 +03:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
count: state.getIn(['notifications', 'unread']),
|
2019-05-26 03:55:37 +03:00
|
|
|
id: 'bell',
|
2019-05-23 02:35:22 +03:00
|
|
|
});
|
|
|
|
|
2019-05-26 03:55:37 +03:00
|
|
|
export default connect(mapStateToProps)(IconWithBadge);
|