How to configure the LocomotiveScrollProvider so that when the button is pressed, it scrolls to the top of page?
<LocomotiveScrollProvider
  options={
    {
      smooth: true,
   
    }
  }
  watch={
    []
  }
  onLocationChange={scroll => scroll.scrollTo(0, { duration: 0, disableLerp: true })}
  onUpdate={() => console.log('Updated, but not on location change!')} 
>
<button onClick = {}> Click </button>
</LocomotiveScrollProvider>