Trying to go back to “/” in react router?

前端 未结 3 975
故里飘歌
故里飘歌 2021-01-19 06:12

So what I want is to have a top-level routing in App.js that routes to Home on \"/\". In Home i want to render a few things and then

3条回答
  •  独厮守ぢ
    2021-01-19 07:13

    I needed to make the following changes:

    App.js: Change Router to Switch, change the order of the Routes and set "/" to a relative path

    
       } />
       } />
    
    

    Remove the Router from Home:

    THIS IS HOME WOO!
    } /> } />

提交回复
热议问题