Viewing docs for an older release. View latest
Outlet

<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>
  );
}
Docs and examples licensed under MIT