Home > database >  Routing requests to update part of child component using React router
Routing requests to update part of child component using React router

Time:08-31

I'm attempting to create layout components for sections of my application which include side navigation panes for navigating between pages within that layout component.

I have react router set up using a BrowserRouter within my Main view. This main view includes the top navigation bar with a menu. When I click the Menu drop down, I can select a section of the app to browse to. This will open a layout which includes the side navigation bar. When a user clicks a link within the side nav bar, it should display content within a content pane on the right side of the screen.

For more info, please see the code example below:

Edit routing-requests-to-update-part-of-child-component-using-react-router

  • Related