“React Ruta Ruta exacta” Código de respuesta

React Get Get Route Rath

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

function HeaderView() {
  const location = useLocation();
  console.log(location.pathname);
  return <span>Path : {location.pathname}</span>
}

Strange Seahorse

React Ruta Ruta exacta


<Route exact path="/">
  <Home />
</Route>

# The exact prop above tells the Router component to match the path exactly. If you don't add the exact prop on the / path, it will match with all the routes starting with a / including /about.
Irfan

Respuestas similares a “React Ruta Ruta exacta”

Preguntas similares a “React Ruta Ruta exacta”

Más respuestas relacionadas con “React Ruta Ruta exacta” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código