UNPKG
@wenn/onb
Version:
latest (1.0.0)
1.0.0
onb-core
@wenn/onb
/
redux
/
actions
/
notifications.actions.js
9 lines
(7 loc)
•
170 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
GLOBAL_NOTIFICATION
}
from
'../constants'
;
export
function
globalNotification
(
notification
) {
return
{
type
:
GLOBAL_NOTIFICATION
, notification }; }