routing in react with props code example
Example 1: route component with props
<Route
path='/dashboard'
component={() => <Dashboard 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}
/>