1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-29 11:03:08 -05:00

7 lines
137 B
JavaScript
Raw Normal View History

export const APP_LAYOUT_CHANGE = 'APP_LAYOUT_CHANGE';
export const changeLayout = layout => ({
type: APP_LAYOUT_CHANGE,
layout,
});