Interface IRenderData<T>

An object which holds the data to render a tab.

interface IRenderData<T> {
    current: boolean;
    tabIndex?: number;
    title: Title<T>;
    zIndex: number;
}

Type Parameters

  • T

Properties

current: boolean

Whether the tab is the current tab.

tabIndex?: number

The tabindex value for the tab.

title: Title<T>

The title associated with the tab.

zIndex: number

The z-index for the tab.