How to nest routes in React Router v4?

后端 未结 6 1209
予麋鹿
予麋鹿 2020-12-01 05:39

Is there a way to nest routes in React Router v4?

This works:

  
    
6条回答
  •  庸人自扰
    2020-12-01 06:15

    I adapted this from the docs, seem to work so far. Probably missing something obvious, and yes it is not the v4 way but we need all the routes defined in one place.

    function RouteNest(props){ return (
        } />
    )}
    
    export const MainRoutes = props => 
    
    
    export const CompoWithSub = props =>
    {props.children)

提交回复
热议问题