This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-03 06:28:39 -07:00
|
|
|
import { createAction } from '@reduxjs/toolkit';
|
2023-05-10 03:59:29 -07:00
|
|
|
|
2023-05-08 06:10:21 -07:00
|
|
|
import type { LayoutType } from '../is_mobile';
|
2023-05-03 06:28:39 -07:00
|
|
|
|
2023-05-10 03:59:29 -07:00
|
|
|
interface ChangeLayoutPayload {
|
2023-05-08 06:10:21 -07:00
|
|
|
layout: LayoutType;
|
2023-05-10 03:59:29 -07:00
|
|
|
}
|
2023-05-03 06:28:39 -07:00
|
|
|
export const changeLayout =
|
|
|
|
createAction<ChangeLayoutPayload>('APP_LAYOUT_CHANGE');
|