<Outlet>
Renders the matching child route of a parent route.
import { Outlet } from "@remix-run/react"; export function SomeParent() { return ( <div> <h1>Parent Content</h1> <Outlet /> </div> ); }