React Router v4 routes not working
You need to use an exact path for / otherwise it will also match /about. <Route exact path=”https://stackoverflow.com/” component={Home} /> As mentioned in the comments, for something this simple I would suggest using Create React App which will make sure your server code and your webpack settings are all correct. Once you use create-react-app you’ll … Read more