Child Route is not displaying React-router

前端 未结 2 773
梦谈多话
梦谈多话 2021-01-26 11:54

i separated routes to different file below is the code. when i try navigate /child route nothing is displaying.its killing my time

routes.js:-

import  Ap         


        
2条回答
  •  迷失自我
    2021-01-26 12:13

    You will need to declare the child path with a preceding slash as well:

    childRoutes: [{
       path: '/child',
       component: Post
    }]
    

提交回复
热议问题