From ec11ac44b0f1070df050ce01633662941161980f Mon Sep 17 00:00:00 2001 From: lashman Date: Thu, 5 Feb 2026 14:34:02 +0200 Subject: [PATCH] stylus detection and settings --- frontend/src/hooks/useStylus.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 frontend/src/hooks/useStylus.ts diff --git a/frontend/src/hooks/useStylus.ts b/frontend/src/hooks/useStylus.ts new file mode 100644 index 0000000..b1112d7 --- /dev/null +++ b/frontend/src/hooks/useStylus.ts @@ -0,0 +1,6 @@ +// stylus handling is now built into InkOverlay.tsx directly +// this file kept for import compatibility +export function useStylus( + _canvasRef: React.RefObject, + _svgRef: React.RefObject, +) {}