1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-21 01:53:51 -05:00

11 lines
200 B
JavaScript

export const APP_FOCUS = 'APP_FOCUS';
export const APP_UNFOCUS = 'APP_UNFOCUS';
export const focusApp = () => ({
type: APP_FOCUS,
});
export const unfocusApp = () => ({
type: APP_UNFOCUS,
});