interface TabsContextProps {
    handleTabClick: ((event: MouseEvent<HTMLElement, MouseEvent>, eventKey: string | number, tabContentRef: RefObject<any>) => void);
    handleTabClose?: ((event: MouseEvent<HTMLElement, MouseEvent>, eventKey: string | number, tabContentRef?: RefObject<any>) => void);
    localActiveKey: string | number;
    mountOnEnter: boolean;
    uniqueId: string;
    unmountOnExit: boolean;
    variant: "default" | "light300";
}

Properties

handleTabClick: ((event: MouseEvent<HTMLElement, MouseEvent>, eventKey: string | number, tabContentRef: RefObject<any>) => void)
handleTabClose?: ((event: MouseEvent<HTMLElement, MouseEvent>, eventKey: string | number, tabContentRef?: RefObject<any>) => void)
localActiveKey: string | number
mountOnEnter: boolean
uniqueId: string
unmountOnExit: boolean
variant: "default" | "light300"