grub/client/lib/roomContext.ts

9 lines
181 B
TypeScript
Raw Normal View History

2023-08-11 04:09:24 +00:00
import { createContext } from "react";
interface RoomContextProps {
roomId: string;
clientId: string;
}
export const RoomContext = createContext<RoomContextProps>(undefined);