mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-06-18 13:51:21 +00:00
14 lines
465 B
JavaScript
14 lines
465 B
JavaScript
import { NEW_MESSAGE, NEW_MESSAGE_NOTIFICATION_QAPP } from './types'
|
|
import { newMessage, newMessageNotificationQapp } from './notification-actions'
|
|
|
|
export const dispatcher = function (notificationState) {
|
|
|
|
switch (notificationState.type) {
|
|
case NEW_MESSAGE:
|
|
return newMessage(notificationState.data)
|
|
case NEW_MESSAGE_NOTIFICATION_QAPP:
|
|
return newMessageNotificationQapp(notificationState.data)
|
|
default:
|
|
}
|
|
}
|