react-router
react-router copied to clipboard
Declarative routing for React
### What is the new or updated feature that you are suggesting? When using routing, complex verification work is often performed on the routing. Expect to add an API to...
### What is the new or updated feature that you are suggesting? Great to see that absolute paths [will be supported ](https://github.com/remix-run/react-router/issues/7335#issuecomment-910892017) in V6, I find it very handy to...
### What is the new or updated feature that you are suggesting? Lazy loading routes is a common pattern. Today, if users lazy load routes, they're forced to use a...
### What is the new or updated feature that you are suggesting? I would like to display a progress bar at the top of the page as the loaders are...
### What version of React Router are you using? 6.3.0 ### Steps to Reproduce 1) Create basic router ``` const [basename, setBasename] = useState('de') ... ``` 2) Navigate to `/one`...
### What version of React Router are you using? 6.0.2 ### Steps to Reproduce 1. Prepare an application that uses react router v6. 2. prepare a Route with a path...
👋 I noticed you were on an old version when looking through the code, so I thought to update it. Main changes are: - Update RN, stop hoisting it and...
### What version of React Router are you using? 6.3.0 ### Steps to Reproduce In a component at path `/static/firms/3da097ce-ae52-4c6d-b7fd-0c7583708631/organizations/181bea0b-1748-44db-ba16-f2329862d989` ```ts const location = useLocation() const { pathname } =...
### What is the new or updated feature that you are suggesting? On the documentation screen Overview: https://reactrouter.com/en/v6.3.0/getting-started/overview clicking on these links;  navigates to the corresponding URLs ending with...
### What is the new or updated feature that you are suggesting? Add documentation for how to access the wildcard value in a route when using useParams. Example: ```js //...