mon-entreprise/actions.js

6 lines
135 B
JavaScript
Raw Normal View History

2016-06-29 10:27:04 +00:00
export const SELECT_TAG = 'SELECT_TAG'
export function selectTag(tagName, tagValue) {
return {type: SELECT_TAG, tagName, tagValue}
}