This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/flavours/glitch/features/ui/containers/notifications_container.js

19 lines
503 B
JavaScript
Raw Normal View History

2016-11-20 10:39:18 -08:00
import { connect } from 'react-redux';
import { NotificationStack } from 'react-notification';
2017-12-03 23:26:40 -08:00
import { dismissAlert } from 'flavours/glitch/actions/alerts';
import { getAlerts } from 'flavours/glitch/selectors';
2017-06-23 07:05:04 -07:00
const mapStateToProps = state => ({
notifications: getAlerts(state),
});
const mapDispatchToProps = (dispatch) => {
return {
2016-11-20 10:39:18 -08:00
onDismiss: alert => {
dispatch(dismissAlert(alert));
},
};
};
export default connect(mapStateToProps, mapDispatchToProps)(NotificationStack);