2020-07-23 10:22:57 -04:00
|
|
|
import { connect } from 'react-redux';
|
2020-12-14 13:52:17 -05:00
|
|
|
import { doReadNotifications, doDeleteNotification } from 'redux/actions/notifications';
|
2020-07-23 10:22:57 -04:00
|
|
|
import Notification from './view';
|
|
|
|
|
2020-08-21 15:44:54 -04:00
|
|
|
export default connect(null, {
|
2020-12-14 13:52:17 -05:00
|
|
|
doReadNotifications,
|
2020-11-03 15:09:56 -05:00
|
|
|
doDeleteNotification,
|
2020-08-21 15:44:54 -04:00
|
|
|
})(Notification);
|