lbry-desktop/ui/component/notification/index.js
2020-08-21 16:04:27 -04:00

8 lines
212 B
JavaScript

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