12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
'use strict'
|
|
|
|
const {RECEIVE_NOTIFICATIONS} = require('./action_constants')
|
|
|
|
module.exports = {
|
|
receivedNotifications: notifications => {
|
|
return {
|
|
type: RECEIVE_NOTIFICATIONS,
|
|
notifications,
|
|
}
|
|
}
|
|
} |