import { useRef } from "react"; export interface GameCanvasProps { width: number; height: number; } export const GameCanvas = ({ width, height }: GameCanvasProps) => { const canvasRef = useRef(null); return (
); };