import clsx from "clsx"; import type * as React from "react"; // shares styles with SubNav.tsx export function Tabs({ children, className, }: { children: React.ReactNode; className?: string; }) { return (
{children}
); } export function Tab({ children, className, active, onClick, testId, }: { children: React.ReactNode; className?: string; active: boolean; onClick: () => void; testId?: string; }) { // TODO: improve semantic html here, maybe could use tab component from Headless UI? return (
{children}
); }