import { createStateContext } from "./util/StateContext"; // This tracks which cell (if any) is currently hovered with the mouse export const hoveredCellContext = createStateContext<{ el: HTMLElement; x: number; y: number; } | null>(null);