UNPKG

@findify/react-components

Version:
13 lines (12 loc) 303 B
import { useEffect } from 'react'; /** * Hack to emit scroll event */ export default (function (items) { useEffect(function () { if (!window) return; window.scrollTo(window.scrollX, window.scrollY - 1); window.scrollTo(window.scrollX, window.scrollY + 1); return; }, [items]); });