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

8 lines
178 B
TypeScript
Raw Normal View History

2025-08-05 18:37:07 +05:30
import { atom } from 'jotai';
export type CreateRoomModalState = {
spaceId?: string;
};
export const createRoomModalAtom = atom<CreateRoomModalState | undefined>(undefined);