Skip to content

React Router

kitiya edited this page Feb 3, 2020 · 4 revisions

Introduction

How to install the react-router?

$ npm install react-router-dom

Basic routing

index.js file

import { Route, Link, BrowserRouter as Router, Switch } from 'react-router-dom'

const routing = (
  <Router>
      <Header />
      <Switch>
        <Route exact path="/" component={App} />
        <Route path="/users" component={Users} />
        <Route path="/contact" component={Contact} />
        <Route component={Notfound} />
      </Switch>
  </Router>
)
ReactDOM.render(routing, document.getElementById('root'))

Clone this wiki locally