UNPKG

@ima/devtools

Version:

IMA.js debugging panel in the Chrome Developer Tools window.

14 lines (9 loc) 283 B
import { connect } from 'react-redux'; import { alertsActions } from '@/slices'; import Alerts from './Alerts'; const mapStateToProps = state => ({ alerts: state.alerts.alerts, }); export default connect(mapStateToProps, { removeAlert: alertsActions.removeAlert, })(Alerts);