export const debounce = (callback, wait) => { let timeoutId = null; return (...args) => { clearTimeout(timeoutId); timeoutId = setTimeout(() => { callback.apply(null, args); }, wait); }; };