forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1import { atom } from "jotai";
2
3export const profilesAtom = atom<{
4 [key: string]: {
5 avatar: string;
6 displayName: string;
7 handle: string;
8 spotifyUser?: {
9 isBeta: boolean;
10 };
11 spotifyConnected: boolean;
12 googledriveUser?: {
13 isBeta: boolean;
14 };
15 dropboxUser?: {
16 isBeta: boolean;
17 };
18 did: string;
19 createdAt: string;
20 } | null;
21}>({});