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.
22 lines
513 B
22 lines
513 B
8 years ago
|
import { connect } from 'react-redux';
|
||
|
import { NotificationStack } from 'react-notification';
|
||
8 years ago
|
import {
|
||
8 years ago
|
dismissAlert,
|
||
|
clearAlerts
|
||
|
} from '../../../actions/alerts';
|
||
|
import { getAlerts } from '../../../selectors';
|
||
8 years ago
|
|
||
8 years ago
|
const mapStateToProps = (state, props) => ({
|
||
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
|
}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(NotificationStack);
|