react router props to route code example
Example: react route props
<Route
path="/page"
render={() => (
<Page
//pass the props through the route
username={username}
password={password}
email={email}
/>
)}
exact={true}
/>