A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at fix/spotify 15 lines 277 B view raw
1import { atom } from "jotai"; 2 3export const dropboxAtom = atom<{ 4 current_dir: string; 5 parent_dir?: string; 6 parent_id?: string; 7 cache: Record< 8 string, 9 { 10 current_dir?: string; 11 parent_dir?: string; 12 parent_id?: string; 13 } 14 >; 15} | null>(null);