1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 15:28:27 +09:00
whippy-edition/app/javascript/mastodon/actions/app.js

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,
});