Moving from react router 3.x to 4.x

后端 未结 5 549
悲&欢浪女
悲&欢浪女 2020-12-08 16:05

How can I move to using https://cdnjs.cloudflare.com/ajax/libs/react-router/4.0.0-2/react-router.min.js from using https://cdnjs.cloudflare.com/ajax/libs/

5条回答
  •  渐次进展
    2020-12-08 16:36

    There should be an upgrade guide closer to full release. I adapted your code for the upcoming beta instead of the current alpha. The beta has not been released yet, so unfortunately there is no hosted version of React Router that you will be able to test this out with.

    let { BrowserRouter, Switch, Redirect, Route, Link } = ReactRouter;
    
    const Main = () =>
      
        
          
            
            
            
            
            
          
        
      
    
    const App = props => 
      
    Map Settings Foo {props.children}
    const Navigation = props =>

提交回复
热议问题