Files
talk/client/coral-plugin-commentbox/actions.js
T

9 lines
128 B
JavaScript

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