Pass props through route
You can use the render prop.
<Route
path='/counter'
render={(props) => (
<Counter {...props} count={5} />
)}
/>
This will do the work: Render
<Route
path='/dashboard'
render={(props) => <Dashboard {...props} isAuthed={true} />}
/>
Hope this helps!