Hey guys, I'm trying to figure out if it's possible to render multiple child routes simultaneously within the same parent route. Specifically, I want to display the content of two different child routes at the same time on the same page, both nested under a single parent route.
The standard Remix routing model seems to only support rendering one child route at a time in the Outlet of the parent route. I'm wondering if there's a way to achieve this multiple child route rendering within Remix's routing system, or if I need to consider alternative approaches like using components instead of routes, creating custom layouts with multiple Outlets, or implementing client-side routing logic.
Has anyone successfully implemented something like this in Remix? If so, how did you approach it? Are there any best practices or recommended patterns for handling this kind of scenario in Remix applications?