A lightweight and customizable React component that adds a 'Go to Top' button to your web application.
npm install go-to-top-react

bash
npm install go-to-top-react
`
Or you can install the package via yarn:
`bash
yarn add go-to-top-react
`
`jsx
import React from "react";
import { GoToTop } from "go-to-top-react";
function App() {
return (
Welcome to My App
{/ Other content /}
{/ Add any custom css class /}
{/ /}
);
}
export default App;
``