You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
503 B
19 lines
503 B
8 years ago
|
import { connect } from 'react-redux';
|
||
|
import { NotificationStack } from 'react-notification';
|
||
7 years ago
|
import { dismissAlert } from 'flavours/glitch/actions/alerts';
|
||
|
import { getAlerts } from 'flavours/glitch/selectors';
|
||
8 years ago
|
|
||
7 years ago
|
const mapStateToProps = state => ({
|
||
8 years ago
|
notifications: getAlerts(state),
|
||
8 years ago
|
});
|
||
8 years ago
|
|
||
|
const mapDispatchToProps = (dispatch) => {
|
||
|
return {
|
||
8 years ago
|
onDismiss: alert => {
|
||
|
dispatch(dismissAlert(alert));
|
||
8 years ago
|
},
|
||
8 years ago
|
};
|
||
|
};
|
||
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(NotificationStack);
|