1import { atom } from "jotai"; 2 3export const statsAtom = atom<{ 4 [did: string]: { 5 scrobbles: number; 6 artists: number; 7 lovedTracks: number; 8 albums: number; 9 tracks: number; 10 } | null; 11}>({});