Files
talk/client/coral-plugin-commentbox/actions.js
T
Belen Curcio 32defa66e6 Clean up
2017-04-12 21:04:47 -03:00

10 lines
129 B
JavaScript

export const addTag = tag => ({
type: 'ADD_TAG',
tag
});
export const removeTag = idx => ({
type: 'REMOVE_TAG',
idx
});