Go up one level in React-Router using Link Go up one level in React-Router using Link reactjs reactjs

Go up one level in React-Router using Link


If somebody still needs it - there is a solution from authors: You can use "." or ".." in your Link component to go one or two levels up.

<Link to=".">

or

history.push(".");