import { Box } from 'theme-ui' import anime from 'animejs/lib/anime.es.js' const handleClick = () => { const scroll = { x: document.scrollingElement.scrollTop } anime({ targets: scroll, x: window.innerHeight, easing: 'easeOutExpo', duration: 800, update: () => { document.scrollingElement.scrollTop = scroll.x } }) } const ScrollHint = ({ ...props }) => ( ) export default ScrollHint