darul75
darul75

Reputation: 353

Location "/" did not match any routes

Really I do not see what is going on, spent all day trying to figure out what is wrong.

Upgraded version react-router: "^1.0.3" and "history": "^1.17.0"

And always got this nice warning message:

Warning: Location "/" did not match any routes

Router is here https://github.com/darul75/web-react/blob/master/app/app-dev.js#L7

My routes https://github.com/darul75/web-react/blob/master/app/routes.js

Was looking to debug with stack but tricky there

function matchRoutes(routes, location, callback) {}

no success, any one to help me would be so nice

Upvotes: 1

Views: 5323

Answers (1)

tcollart
tcollart

Reputation: 1062

In app-dev.js, change

import Router from 'react-router'; to import {Router} from 'react-router';

and

const routes = require('./routes'); to import routes from './routes';

Upvotes: 4

Related Questions