Top "React-router" questions

React Router - A complete routing library for React inspired by Ember's routing system

How to get current route in react-router 2.0.0-rc5

I have a router like below: <Router history={hashHistory}> <Route path="/" component={App}> <IndexRoute component={…

javascript reactjs react-router
Detect Route Change with react-router

I have to implement some business logic depending on browsing history. What I want to do is something like this: …

reactjs react-router react-router-v4 react-router-redux react-router-dom
React router nav bar example

I am a beginner in React JS and would like to develop a react router based navigation for my Dashboard. …

reactjs nav react-router
react-router getting this.props.location in child components

As I understand <Route path="/" component={App} /> will gives App routing-related props like location and params. If my …

javascript reactjs react-router
Changing the URL in react-router v4 without using Redirect or Link

I'm using react-router v4 and material-ui in my React app. I was wondering how to change the URL once there …

javascript react-router material-ui react-router-v4
How do I add an active class to a Link from React Router?

I've created a bootstrap-style sidebar using Link. Here is a snippet of my code: <ul className="sidebar-menu"> <…

react-router
No restricted globals

I am using React and Redux to develop a webapp and when I started up my project I got this: …

javascript reactjs react-router eslint
Warning: Failed propType: Invalid prop `component` supplied to `Route`

I'm trying new react-router 1.0.0 and I'm getting strange warnings I can't explain: Warning: Failed propType: Invalid prop `component` supplied to `…

javascript reactjs react-router react-jsx
React : difference between <Route exact path="/" /> and <Route path="/" />

Can someone explain the difference between <Route exact path="/" component={Home} /> and <Route path="/" component={Home} /> …

reactjs react-router react-router-dom
Detecting user leaving page with react-router

I want my ReactJS app to notify a user when navigating away from a specific page. Specifically a popup message …

reactjs react-router