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