mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 18:30:01 +08:00
14 lines
194 B
JavaScript
14 lines
194 B
JavaScript
export const addTag = (tag) => ({
|
|
type: 'ADD_TAG',
|
|
tag
|
|
});
|
|
|
|
export const removeTag = (idx) => ({
|
|
type: 'REMOVE_TAG',
|
|
idx
|
|
});
|
|
|
|
export const clearTags = () => ({
|
|
type: 'CLEAR_TAGS',
|
|
});
|