mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-03-13 08:35:05 +00:00
6 lines
135 B
JavaScript
6 lines
135 B
JavaScript
|
export const SELECT_TAG = 'SELECT_TAG'
|
||
|
|
||
|
export function selectTag(tagName, tagValue) {
|
||
|
return {type: SELECT_TAG, tagName, tagValue}
|
||
|
}
|