Hey @channel, I would instead recommend using this method if you need to pass props into a component triggered via React Router, as it avoids creating a brand new component which then mounts/remounts every render. The syntax is clunky, but it performs better and doesn't lag down our app.
`<Route exact path="/signup" render={(props) => <Auth {...props} action="signup" />} />`
*Hint:* It's also recommended that we pass on the `{...props}` you see above so you don't lose access to the existing props for that component, for example this.props.match from React Router.
https://tylermcginnis.com/react-router-pass-props-to-components/