mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-15 19:33:32 +00:00
e6a7cfd12e
Port 5eeb40bdbe
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
import type { LayoutType } from '../is_mobile';
|
|
|
|
interface ChangeLayoutPayload {
|
|
layout: LayoutType;
|
|
}
|
|
export const changeLayout =
|
|
createAction<ChangeLayoutPayload>('APP_LAYOUT_CHANGE');
|