The new React version 0.15.2 has introduced a new warning regarding passing props to children: https://fb.me/react-unknown-prop
2.5.2
git clone https://github.com/FredericHeem/starhackit && cd starhackit/client && npm i && npm start
No react warnings
warning.js:44 Warning: Unknown props history, location, params, route, routeParams, routes on
You're getting that error because _you're_ passing down the route props to the DOM nodes.
Thanks a lot.
This is a pattern taken from the example: https://github.com/reactjs/react-router/blob/master/examples/huge-apps/app.js#L23
To reproduce the issue:
npm start
open http://localhost:8080/huge-apps/
I agree with @FredericHeem this error is occurring in the example https://github.com/reactjs/react-router/blob/master/examples/huge-apps/app.js#L23 with the React 15.2
Can someone reopen this issue as it is definitely an issue ?
This is not inherent with the router. It's an issue with an example. This bug report is for the wrong thing. A PR for fixing the example is what's needed instead.
Most helpful comment
https://github.com/reactjs/react-router/pull/3608