Adding actions

This commit is contained in:
Belen Curcio
2017-07-21 05:23:54 -03:00
parent 11ea45ef69
commit f86d210bbb
@@ -0,0 +1,9 @@
import {SHOW_TOOLTIP, HIDE_TOOLTIP} from './constants';
export const showTooltip = () => ({
type: SHOW_TOOLTIP
});
export const hideTooltip = () => ({
type: HIDE_TOOLTIP
});