mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
export const APP_LAYOUT_CHANGE = 'APP_LAYOUT_CHANGE';
|
|
|
|
export const changeLayout = layout => ({
|
|
type: APP_LAYOUT_CHANGE,
|
|
layout,
|
|
});
|