global player

This commit is contained in:
2025-10-07 09:51:38 +02:00
parent 5cd6741ae6
commit f796d91267
15 changed files with 1031 additions and 136 deletions
+9
View File
@@ -0,0 +1,9 @@
import { useContext } from "react";
import { PlayerContext } from "../providers/PlayerProvider";
const usePlayer = () => {
return useContext(PlayerContext);
};
export default usePlayer;