mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-29 07:53:41 +01:00
468dfffd26
Port 5bc8e2d1fd
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
import type { LayoutType } from '../is_mobile';
|
|
|
|
type ChangeLayoutPayload = {
|
|
layout: LayoutType;
|
|
};
|
|
export const changeLayout =
|
|
createAction<ChangeLayoutPayload>('APP_LAYOUT_CHANGE');
|