Interface AppTabsProps

Is the interface that defines the properties for the header tab bar control

Hierarchy

  • AppTabsProps

Properties

className?: string

Is the CSS class for the tab-bar

clearStates: string[]

Is an array of keys which specifies the various history states to be removed when a tab is clicked (selected) The app might be in a state that shows a specific UI (when in a tab view). When the tab is switched, all the UI state will need (if needed) to be reset for the new tab UI. The keys specified in the "current" property will insure that all those states are cleared.

extra?: ReactNode | { left?: ReactNode; right?: ReactNode }

Specifies the extra UI elements that will be added to the left/right of the tab bar.

See

https://ant.design/components/tabs/#API

tabOptions: { content: ReactNode; icon?: ReactNode; localeKey?: string; name: string }[]

Are the various UI (tab-bar) tabs

tabsProps?: TabsProps

Properties of Ant Design Tab component

Generated using TypeDoc