pass props to react route path code example
Example 1: route pass props to component
<Route
path='/dashboard'
render={(props) => (
<Dashboard {...props} isAuthed={true} />
)}
/>
Example 2: react route props
<Route
path="/page"
render={() => (
<Page
//pass the props through the route
username={username}
password={password}
email={email}
/>
)}
exact={true}
/>