1 Matching Annotations
- May 2017
-
www.hackingwithreact.com www.hackingwithreact.com
-
<Router> <Route path="/" component={ Detail } /> </Router>,
In newer versions of React, this won't work without a history prop and hashHistory. Depending on how you import hashHistory, the code will look something like this:
let hashHistory = createHashHistory(); <Router history={hashHistory}> <Route path="/" component={ Detail } /> </Router>,
-