Answers for "how to import switch in react js"

-2

how to import switch in react js

import { Route, Switch } from "react-router";

let routes = (
  <Switch>
    <Route exact path="/">
      <Home />
    </Route>
    <Route path="/about">
      <About />
    </Route>
    <Route path="/:user">
      <User />
    </Route>
    <Route>
      <NoMatch />
    </Route>
  </Switch>
);
Posted by: Guest on February-27-2022

Code answers related to "how to import switch in react js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language