We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<Route to />
I have this situation:
<Route to={router.example} render={...} /> will render a <OriginalRoute render={...} /> component
<Route to={router.example} render={...} />
<OriginalRoute render={...} />
To have my <Switch /> to work as expected I had to write down:
<Switch />
<Route path={router.example().fullTemplate} render={...} />
I think that's something on props overwrite? I'm importing the wrong module?
The text was updated successfully, but these errors were encountered:
Maybe is something about: https://github.com/remix-run/react-router/blob/46c4c530e0ba1d159ea11310f4c5bdad8da80322/packages/react-router/modules/Switch.js#L68
Obviously, the clone stuff won't work wrapping a Route :\
Sorry, something went wrong.
No branches or pull requests
I have this situation:
<Route to={router.example} render={...} />
will render a
<OriginalRoute render={...} />
componentTo have my
<Switch />
to work as expected I had to write down:<Route path={router.example().fullTemplate} render={...} />
I think that's something on props overwrite? I'm importing the wrong module?
The text was updated successfully, but these errors were encountered: