so, let's say I have a "master/detail"-ish architecture, where my UI has a section for a specific user, and within that section is a page that shows that user's followers. it's at a route like /users/:username/followers
.
in my component hierarchy, this works with something like
<FollowersPage> <-- top level route component, matched by react-router
<UserSectionWrapper> <-- renders the outer wrapper for the user section
<FollowersList /> <-- the inner content of the page
</UserSectionWrapper>
</FollowersPage>