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

8 lines
212 B
JavaScript
Raw Normal View History

2020-07-23 16:22:57 +02:00
import { connect } from 'react-redux';
2020-08-21 21:44:54 +02:00
import { doSeeNotifications } from 'redux/actions/notifications';
2020-07-23 16:22:57 +02:00
import Notification from './view';
2020-08-21 21:44:54 +02:00
export default connect(null, {
doSeeNotifications,
})(Notification);