Sid Gifari File Manager
🏠 Root
/
home2
/
nuveprin
/
ahavahome.org
/
wp-content
/
plugins
/
give
/
src
/
Campaigns
/
resources
/
store
/
Editing: selectors.ts
import type {Notification} from '@givewp/campaigns/types'; export function getNotifications(state: []) { return state; } export function getNotificationsByType(state: [], type: 'snackbar' | 'notice') { return state.filter((notification: Notification) => notification.notificationType === type); }
Save
Cancel