mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 12:08:06 +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,
|
||
|
});
|