mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 13:23:13 +00:00
3d9e35375c
Port 0999cb4601
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
type ChangeLayoutPayload = {
|
|
layout: 'mobile' | 'single-column' | 'multi-column';
|
|
};
|
|
export const changeLayout =
|
|
createAction<ChangeLayoutPayload>('APP_LAYOUT_CHANGE');
|