1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-03-13 06:15:04 +00:00
mon-entreprise/reducers.js

18 lines
303 B
JavaScript

import { combineReducers } from 'redux'
import { SELECT_TAG } from './actions'
function selectedTags(state = [], {type, tagName, tagValue}) {
switch (type) {
case SELECT_TAG:
return [...state, [tagName, tagValue]]
default:
return state
}
}
export default combineReducers({
selectedTags
})