1import { atom } from "jotai"; 2 3export const nowPlayingAtom = atom<{ 4 title: string; 5 artist: string; 6 cover: string; 7 duration: number; 8 progress: number; 9 isPlaying: boolean; 10 liked: boolean; 11 uri: string; 12} | null>(null); 13 14export const progressAtom = atom(0);