react-router icon indicating copy to clipboard operation
react-router copied to clipboard

Declarative routing for React

Results 316 react-router issues
Sort by recently updated
recently updated
newest added

### What version of React Router are you using? 6.3.0 ### Steps to Reproduce Run the following code: ``` function Child(props) { useEffect(() => { props.wrappedNavigate('./otherRoute') }, []); return }...

bug

### What is the new or updated feature that you are suggesting? I'm following the [v6 upgrade docs](https://reactrouter.com/docs/en/v6/upgrading/v5). It says > What did we miss? Despite our best attempts at...

feature

### What is the new or updated feature that you are suggesting? I am trying to migrate a big repository with multiple frontend apps from `v5` to `v6`. For now,...

docs

**Edit:** This might actually be a feature request - I wasn't sure if it's supposed to be possible or not. ### What version of React Router are you using? [email protected]...

bug

I am using a screen reader to interact with my application. Moving between routes does not reset the focus, which would occur on a server-side render. Is there a fix...

feature

### What version of React Router are you using? 6.3.0 ### Steps to Reproduce ``` const path = generatePath("/route/:name", { name: "includes *asterisk at the end*", }) ``` ### Expected...

bug

### What version of React Router are you using? n/a ### The issue https://github.com/remix-run/react-router/blob/main/docs/getting-started/tutorial.md has stackblitz and CRA/vite instructions. Bundler options are going to use react 18 and vite 3....

bug

### What is the new or updated feature that you are suggesting? NavLink's isActive prop has been removed in v6 either intentionally or accidentally. I suggest to bring it back....

### What is the new or updated feature that you are suggesting? update current route.path to allow more conditional regex paths for multiple conditions like in v5. v5 route: `/(wines|whiskeys|sakes|beers)/:id/:productName?`...

feature