mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-09-13 14:22:25 +03:00

* add new create room * rename create room modal file * default restrict access for space children in room create modal * move create room kind selector to components * add radii variant to sequence card component * more more reusable create room logic to components * add create space * update address input description * add new space modal * fix add room button visible on left room in space lobby
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import { atom } from 'jotai';
|
|
|
|
export type CreateSpaceModalState = {
|
|
spaceId?: string;
|
|
};
|
|
|
|
export const createSpaceModalAtom = atom<CreateSpaceModalState | undefined>(undefined);
|