Completed color value editor component.

This commit is contained in:
Jay
2025-08-03 15:24:25 -04:00
parent 33f6a7e0c2
commit c27a5258d3
10 changed files with 613 additions and 36 deletions
+4
View File
@@ -0,0 +1,4 @@
export function useResize(callback: () => void): () => void {
window.addEventListener("resize", callback);
return () => window.removeEventListener("resize", callback);
}