lbry-desktop/ui/component/notification/index.js

9 lines
258 B
JavaScript

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