React Design Patterns Documentation - v0.0.3
    Preparing search index...
    interface TabsProps {
        tabs: readonly TabItem[];
        activeTab: string;
        onTabChange: (tabId: string) => void;
        children?: ReactNode;
    }
    Index

    Properties

    tabs: readonly TabItem[]
    activeTab: string
    onTabChange: (tabId: string) => void
    children?: ReactNode