mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08: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,
|
|
});
|