mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 23:58:06 +01:00
c09ecbc53e
Fix #1288
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,
|
|
});
|