// Debounce helperexport const debounce = (fn, wait = 200) => { let id; return (...args) => { clearTimeout(id); id = setTimeout(() => fn(...args), wait); };};