// src/hooks/useOffscreenCanvas.js import { useRef } from 'react'; export function useOffscreenCanvas(width, height) { const offscreenRef = useRef(null); if (!offscreenRef.current && typeof OffscreenCanvas !== 'undefined') { offscreenRef.current = new OffscreenCanvas(width, height); } return offscreenRef.current; }