a tool for shared writing and social publishing
0

Configure Feed

Select the types of activity you want to include in your feed.

Delete components/utils/CoordDebugger.tsx

authored by

Jared Pereira and committed by
GitHub
(Mar 25, 2026, 4:59 PM EDT) 4641f287 7c2655e9

-30
-30
components/utils/CoordDebugger.tsx
··· 1 - "use client"; 2 - import { create } from "zustand"; 3 - 4 - export let useCoordState = create(() => ({ 5 - coords: [] as { x: number; y: number; color?: string }[], 6 - })); 7 - 8 - export function CoordDebugger() { 9 - let coords = useCoordState((s) => s.coords); 10 - return ( 11 - <> 12 - {coords.map((coord, index) => ( 13 - <div 14 - key={index} 15 - style={{ 16 - position: "fixed", 17 - left: coord.x, 18 - top: coord.y, 19 - pointerEvents: "none", 20 - height: "16px", 21 - width: "16px", 22 - backgroundColor: coord.color || "red", 23 - borderRadius: "50%", 24 - zIndex: 9999, 25 - }} 26 - ></div> 27 - ))} 28 - </> 29 - ); 30 - }