Files
talk/client/talk-plugin-commentbox/actions.js
T
2017-07-20 11:52:36 -03:00

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',
});