| 1 | import type {Notification} from '@givewp/campaigns/types'; |
| 2 | |
| 3 | export function getNotifications(state: []) { |
| 4 | return state; |
| 5 | } |
| 6 | |
| 7 | export function getNotificationsByType(state: [], type: 'snackbar' | 'notice') { |
| 8 | return state.filter((notification: Notification) => notification.notificationType === type); |
| 9 | } |
| 10 |