Files
alexis/lib/components/wakewords/reducer.js
2023-08-01 12:47:58 +02:00

13 lines
290 B
JavaScript

'use strict'
const {RECEIVE_WAKEWORDS} = require('./action_constants')
module.exports = (state = {}, action) => {
switch (action.type) {
case RECEIVE_WAKEWORDS:
return Object.assign({}, state, {
wakewords: action.wakewords
})
default:
return state
}
}