lbry-redux/src/redux/selectors/notifications.js

9 lines
234 B
JavaScript
Raw Normal View History

2018-04-05 03:57:29 +01:00
import { createSelector } from 'reselect';
export const selectState = state => state.notifications || {};
export const selectNotification = createSelector(
selectState,
state => (state.queue.length > 0 ? state.queue[0] : {})
);