6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
|
import { atom } from 'jotai';
|
||
|
import { NowPlayingData } from '../mocks';
|
||
|
|
||
|
export const themeAtom = atom<'light' | 'dark' | 'red'>('light');
|
||
|
export const currentTrackAtom = atom<NowPlayingData>()
|