2025-08-05 18:37:07 +05:30
|
|
|
import { atom } from 'jotai';
|
2026-03-07 18:03:32 +11:00
|
|
|
import { CreateRoomType } from '../components/create-room/types';
|
2025-08-05 18:37:07 +05:30
|
|
|
|
|
|
|
|
export type CreateRoomModalState = {
|
|
|
|
|
spaceId?: string;
|
2026-03-07 18:03:32 +11:00
|
|
|
type?: CreateRoomType;
|
2025-08-05 18:37:07 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const createRoomModalAtom = atom<CreateRoomModalState | undefined>(undefined);
|