Files
talk/plugins/talk-plugin-featured-comments/client/actions.js
T
Belen Curcio f86d210bbb Adding actions
2017-07-21 05:23:54 -03:00

10 lines
180 B
JavaScript

import {SHOW_TOOLTIP, HIDE_TOOLTIP} from './constants';
export const showTooltip = () => ({
type: SHOW_TOOLTIP
});
export const hideTooltip = () => ({
type: HIDE_TOOLTIP
});