mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 02:40:11 +08:00
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
import {SHOW_TOOLTIP, HIDE_TOOLTIP} from './constants';
|
|
|
|
export const showTooltip = () => ({
|
|
type: SHOW_TOOLTIP
|
|
});
|
|
|
|
export const hideTooltip = () => ({
|
|
type: HIDE_TOOLTIP
|
|
});
|