-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Hi! Thank you for building this, the package looks awesome.
It would be great to document nested routing. Is it even supported currently? I'm talking things like:
/dashboard
/profile
/settings
How can I describe these nested routes and how would I render them? I suspect nesting outlets should do that, but nothing in the README or examples suggests one can do that.
I'd love to achieve this:
function Dashboard() {
return (
<div>
<p>dashboard</p>
<outlet />
</div>
)
}
function DashboardProfile() {
return <div><p>profile</p><outlet /></div>
}
function Settings() {
return <p>settings</p>
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels