mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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,
|
||
|
});
|