scrimba
React Bootcamp Course
React Router - props passed to routed components
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

React Router - props passed to routed components
AboutCommentsNotes
React Router - props passed to routed components
Expand for more info
App.js
run
preview
console
import React from "react"
import {Link, Switch, Route} from "react-router-dom"

import Home from "./Home"
import About from "./About"

function App() {
return (
<div>
<Link to="/">Home</Link>
<Link to="/about">About</Link>

<Switch>
<Route exact path="/" component={Home} />
<Route path="/about" component={About} />
</Switch>
</div>
)
}

export default App
Console
/
-4:17