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);