Skip to content

Instantly share code, notes, and snippets.

@codewithbernard
Created November 29, 2021 11:38
Show Gist options
  • Select an option

  • Save codewithbernard/748b1d40a860caee699dd2e86700ee30 to your computer and use it in GitHub Desktop.

Select an option

Save codewithbernard/748b1d40a860caee699dd2e86700ee30 to your computer and use it in GitHub Desktop.
import React from "react";
const App = () => {
return (
<div className="container">
<button
onClick={() =>
window.scrollTo({
left: 0,
top: window.innerHeight,
behavior: "smooth",
})
}
>
Scroll to bottom
</button>
<button
onClick={() =>
window.scrollTo({
left: 0,
top: 0,
behavior: "smooth",
})
}
>
Scroll top top
</button>
</div>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment