Answers for "react router install"

11

react router install

npm install react-router-dom
Posted by: Guest on November-18-2019
29

react router dom install

import React from "react";
import {
  BrowserRouter as Router,
  Switch,
  Route,
  Link
} from "react-router-dom";

export default function App() {
  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>
  );
}

function Home() {
  return <h2>Home</h2>;
}

function About() {
  return <h2>About</h2>;
}

function Users() {
  return <h2>Users</h2>;
}
Posted by: Guest on February-10-2020
30

react router install

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

react router install

// How to work with react router dom in react-web
import {
  BrowserRouter as Router,
  StaticRouter, // for server rendering
  Route,
  Link
  // etc.
} from "react-router-dom";
Posted by: Guest on December-14-2020
4

react router install

npm install --save react-router-dom
Posted by: Guest on July-20-2020
0

react router install

npm install react-router
# or
yarn add react-router
Posted by: Guest on August-01-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language