Untitled

 avatar
unknown
plain_text
a year ago
280 B
4
Indexable
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';

const App = () => (
  <Router>
    <Switch>
      <Route path="/" exact component={HomePage} />
      <Route path="/about" component={AboutPage} />
      {/* Other routes */}
    </Switch>
  </Router>
);
Editor is loading...
Leave a Comment