Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save codewithbernard/d2d2edac9a181db2c680a897350bf95e to your computer and use it in GitHub Desktop.
import React from "react";
const App = () => {
return (
<div className="container">
<button onClick={() => window.scrollTo(0, window.innerHeight)}>
Scroll to bottom
</button>
<button onClick={() => window.scrollTo(0, 0)}>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