mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-25 09:34:16 -05: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,
|
||
|
});
|