Answers for "on every page scroll to top in react"

1

scoll to top on each route react

import { useEffect } from "react";
import { useLocation } from "react-router-dom";

export default function ScrollToTop() {
  const { pathname } = useLocation();

  useEffect(() => {
    window.scrollTo(0, 0);
  }, [pathname]);

  return null;
}


function App() {
  return (
    <Router>
      <ScrollToTop />
      <App />
    </Router>
  );
}
Posted by: Guest on April-18-2021
-1

how to create scroll to top button in reactjs example code

import React from "react";import ScrollUpButton from "react-scroll-up-button"; //Add this line Here export default class Index extends React.Component {    render() {        return (            <div>                <ScrollUpButton />                //This is all you need to get the default view working            </div>        );    }} 
Posted by: Guest on September-02-2020

Code answers related to "on every page scroll to top in react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language