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}
|
||
|
}
|