Nested routes with react router v4 / v5

后端 未结 11 1994
广开言路
广开言路 2020-11-22 12:34

I am currently struggling with nesting routes using react router v4.

The closest example was the route config in the React-Router v4 Documentation.

I want t

11条回答
  •  萌比男神i
    2020-11-22 13:26

    In react-router-v4 you don't nest . Instead, you put them inside another .


    For instance

    
      
    
    

    should become

    
    

    with

    const Topics = ({ match }) => (
      

    Topics

    Example topic
    )

    Here is a basic example straight from the react-router documentation.

提交回复
热议问题