1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-03-13 08:35:05 +00:00
mon-entreprise/actions.js

6 lines
135 B
JavaScript
Raw Normal View History

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