File size: 447 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import { create } from 'zustand';
interface PlayerStore {
ids: string[];
activeId?: string;
setId: (id: string) => void;
setIds: (ids: string[]) => void;
reset: () => void;
}
const usePlayer = create<PlayerStore>((set) => ({
ids: [],
activeId: undefined,
setId: (id: string) => set({ activeId: id }),
setIds: (ids: string[]) => set({ ids }),
reset: () => set({ ids: [], activeId: undefined })
}));
export default usePlayer;
|