Skip to content

How to pass props to a child component via React Router

New Course Coming Soon:

Get Really Good at Git

This short tutorial explains how to pass props to a child component via React Router

There are many solutions to pass props to a child component via React Router, and some you’ll find are outdated.

The most simple ever is adding the props to the Route wrapper component:

const Index = props => <h1>{props.route.something}</h1>

var routes = <Route path="/" something={'here'} component={Index} />

But in this way you need to modify how you access props, via this.props.route.* instead than the usual this.props, which might or might not be acceptable.

A way to fix this is to use:

const Index = props => (
  <h1>{props.something}</h1>
)

<Route path="/" render={() => <Index something={'here'} />} />
Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Get my React Beginner's Handbook
→ Read my full React Tutorial on The Valley of Code

Here is how can I help you: