lbry-desktop/ui/component/notification/index.js
2020-12-15 13:59:08 -05:00

9 lines
260 B
JavaScript

import { connect } from 'react-redux';
import { doReadNotifications, doDeleteNotification } from 'redux/actions/notifications';
import Notification from './view';
export default connect(null, {
doReadNotifications,
doDeleteNotification,
})(Notification);