import { createContext, useContext } from 'react'; const GameContext = createContext(null); export const useGame = () => useContext(GameContext); export default GameContext;