mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
7 lines
288 B
TypeScript
7 lines
288 B
TypeScript
import { useContext } from 'react';
|
|
import { PlayQueueHandlerContext } from '/@/renderer/features/player/context/play-queue-handler-context';
|
|
|
|
export const usePlayQueueAdd = () => {
|
|
const { handlePlayQueueAdd } = useContext(PlayQueueHandlerContext);
|
|
return handlePlayQueueAdd;
|
|
};
|