mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-08 13:35:14 +00:00
10 lines
200 B
JavaScript
10 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,
|
|
});
|