| .. | |||||
| actions.ts | |||||
| index.ts | |||||
| 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);
}
| .. | |||||
| actions.ts | |||||
| index.ts | |||||
| selectors.ts |