1import { atom } from "jotai"; 2 3export const playlistsAtom = atom< 4 { 5 id: string; 6 name: string; 7 picture: string; 8 description?: string; 9 uri?: string; 10 spotifyLink?: string; 11 tidalLink?: string; 12 appleMusicLink?: string; 13 trackCount: number; 14 }[] 15>([]);