mirror of
https://github.com/funamitech/mastodon
synced 2024-12-18 08:38:55 +09:00
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');
|