Function: Tabs()
Tabs(
__namedParameters):any
Defined in: components/Tabs/Tabs.tsx:91
A tabbed navigation widget (Navigation entity). Compose with TabList +
Tab for the switcher and TabPanel for each view. React Aria manages
selection, arrow-key navigation, and panel association.
Parameters
| Parameter | Type |
|---|---|
__namedParameters | TabsProps |
Returns
any
Example
<Tabs>
<TabList aria-label="Sections">
<Tab id="a">Overview</Tab>
<Tab id="b">Details</Tab>
</TabList>
<TabPanel id="a">Overview content</TabPanel>
<TabPanel id="b">Details content</TabPanel>
</Tabs>