React router pass prop code example
Example 1: route pass props to component
<Route
path='/dashboard'
render={(props) => (
<Dashboard {...props} isAuthed={true} />
)}
/>
Example 2: how to pass a prop in route
<Route
path='/dashboard'
component={() => <Dashboard isAuthed={true} />}
/>