Luego de mucho trabajar ya dimos con el resultado de esta interrogante que tantos lectores de nuestra web presentan. Si quieres compartir alguna información no dudes en aportar tu conocimiento.
Ejemplo 1: instalar react enrutador
npminstall react-router-dom
Ejemplo 2: reaccionar router dom
import React from "react";import
BrowserRouter as Router,
Switch,
Route,
Link
from "react-router-dom";export default functionApp()return(<Router><div><nav><ul><li><Link to="/">Home</Link></li><li><Link to="/about">About</Link></li><li><Link to="/users">Users</Link></li></ul></nav>/* A <Switch> looks through its children <Route>s and
renders the first one that matches the current URL. */<Switch><Route path="/about"><About /></Route><Route path="/users"><Users /></Route><Route path="/"><Home /></Route></Switch></div></Router>);functionHome()return<h2>Home</h2>;functionAbout()return<h2>About</h2>;functionUsers()return<h2>Users</h2>;
Ejemplo 3: npm react router dom
// using ES6 modulesimport BrowserRouter, Route, Link from "react-router-dom"; // using CommonJS modulesconst BrowserRouter = require("react-router-dom").BrowserRouter;const Route = require("react-router-dom").Route;const Link = require("react-router-dom").Link;
Eres capaz de añadir valor a nuestro contenido tributando tu veteranía en las interpretaciones.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)