Answers for "where to set route in react"

3

react get route path

import { useLocation } from 'react-router-dom'

function HeaderView() {
  const location = useLocation();
  console.log(location.pathname);
  return <span>Path : {location.pathname}</span>
}
Posted by: Guest on May-09-2021
39

how to do routes react js

npm install react-router-dom
Posted by: Guest on February-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language