mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
17 lines
338 B
JavaScript
17 lines
338 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,
|
|
});
|
|
|
|
export const APP_LAYOUT_CHANGE = 'APP_LAYOUT_CHANGE';
|
|
|
|
export const changeLayout = layout => ({
|
|
type: APP_LAYOUT_CHANGE,
|
|
layout,
|
|
});
|