16 lines
449 B
JavaScript
16 lines
449 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import {
|
||
|
selectNotifications,
|
||
|
selectIsFetchingNotifications,
|
||
|
selectUnreadNotificationCount,
|
||
|
} from 'redux/selectors/notifications';
|
||
|
import NotificationsPage from './view';
|
||
|
|
||
|
const select = state => ({
|
||
|
notifications: selectNotifications(state),
|
||
|
fetching: selectIsFetchingNotifications(state),
|
||
|
unreadCount: selectUnreadNotificationCount(state),
|
||
|
});
|
||
|
|
||
|
export default connect(select)(NotificationsPage);
|