mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-01 07:34:41 +01:00
7 lines
137 B
JavaScript
7 lines
137 B
JavaScript
|
export const APP_LAYOUT_CHANGE = 'APP_LAYOUT_CHANGE';
|
||
|
|
||
|
export const changeLayout = layout => ({
|
||
|
type: APP_LAYOUT_CHANGE,
|
||
|
layout,
|
||
|
});
|