import { useContext } from 'react'; import { SocketContext } from './socket'; export function useSocket() { const socket = useContext(SocketContext); return socket; }