Files
cinny/src/app/state/roomSettings.ts
T

22 lines
407 B
TypeScript
Raw Normal View History

import { atom } from 'jotai';
export enum RoomSettingsPage {
GeneralPage,
MembersPage,
PermissionsPage,
EmojisStickersPage,
DeveloperToolsPage,
ExportPage,
ActivityLogPage,
ServerACLPage,
InsightsPage,
}
export type RoomSettingsState = {
page?: RoomSettingsPage;
roomId: string;
spaceId?: string;
};
export const roomSettingsAtom = atom<RoomSettingsState | undefined>(undefined);