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

8 lines
181 B
TypeScript
Raw Normal View History

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