8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import { useContext } from 'react';
|
|
import { SocketContext } from './socket';
|
|
|
|
export function useSocket() {
|
|
const socket = useContext(SocketContext);
|
|
return socket;
|
|
}
|