WIP - new profile view

This commit is contained in:
Ajay Bura 2025-07-17 09:48:01 +05:30
parent c757b8967f
commit 275b5bb18f
12 changed files with 568 additions and 6 deletions

View file

@ -0,0 +1,11 @@
import { RectCords } from 'folds';
import { atom } from 'jotai';
export type UserRoomProfileState = {
userId: string;
roomId: string;
spaceId?: string;
cords: RectCords;
};
export const userRoomProfileAtom = atom<UserRoomProfileState | undefined>(undefined);