"use client"; import * as React from "react"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; /** Client shell for the request detail tabs; each panel is server-rendered and passed in as a node. */ export function RequestDetailTabs({ overview, attempts, headers, timing, attemptCount, headerCount }: { overview: React.ReactNode; attempts: React.ReactNode; headers: React.ReactNode; timing: React.ReactNode; attemptCount: number; headerCount: number }) { return ( Overview Attempts {attemptCount} Headers {headerCount} Timing {overview} {attempts} {headers} {timing} ); }