team-9/app/src/atoms/index.tsx

6 lines
195 B
TypeScript
Raw Normal View History

2025-08-02 02:08:59 +02:00
import { atom } from 'jotai';
import { NowPlayingData } from '../mocks';
export const themeAtom = atom<'light' | 'dark' | 'red'>('light');
export const currentTrackAtom = atom<NowPlayingData>()