How to set the DefaultRoute to another Route in React Router

前端 未结 11 1242
心在旅途
心在旅途 2020-12-13 02:11

I have the following:

  
    
            


        
11条回答
  •  自闭症患者
    2020-12-13 02:26

    import { Route, Redirect } from "react-router-dom";
    
    class App extends Component {
      render() {
        return (
          
    //rest of code here

    this will make it so that when you load up the server on local host it will re direct you to /something

提交回复
热议问题