mirror of
https://github.com/wassname/talk.git
synced 2026-07-22 13:00:29 +08:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
import {OPEN_TOOLTIP, CLOSE_TOOLTIP} from './constants';
|
|
|
|
export const openTooltip = (id) => ({
|
|
type: OPEN_TOOLTIP,
|
|
id,
|
|
});
|
|
|
|
export const closeTooltip = () => ({
|
|
type: CLOSE_TOOLTIP,
|
|
});
|