diff --git a/plugins/talk-plugin-featured-comments/client/actions.js b/plugins/talk-plugin-featured-comments/client/actions.js new file mode 100644 index 000000000..653b8f565 --- /dev/null +++ b/plugins/talk-plugin-featured-comments/client/actions.js @@ -0,0 +1,9 @@ +import {SHOW_TOOLTIP, HIDE_TOOLTIP} from './constants'; + +export const showTooltip = () => ({ + type: SHOW_TOOLTIP +}); + +export const hideTooltip = () => ({ + type: HIDE_TOOLTIP +});