Added useSlider hook and mouse interaction test.

This commit is contained in:
Jay
2025-07-22 07:46:18 -04:00
parent 936c513a73
commit d224f335e9
13 changed files with 308 additions and 17 deletions
+3
View File
@@ -0,0 +1,3 @@
export function minmax(number: number, min: number, max: number) {
return Math.min(max, Math.max(min, number));
}