1import { atom } from "jotai"; 2 3export const statsAtom = atom<{ 4 scrobbles: number; 5 artists: number; 6 lovedTracks: number; 7} | null>(null);