Skip to content

Tabs

const Tabs: React.FC<TabsProps>

Defined in: src/components/navigation/Tabs/Tabs.tsx:46

Tabs component for switching between views within a panel.

Compound component pattern: use with TabList, Tab, and TabPanel.

Example

<Tabs defaultValue="properties">
<TabList>
<Tab value="properties">Properties</Tab>
<Tab value="materials">Materials</Tab>
</TabList>
<TabPanel value="properties">Properties content</TabPanel>
<TabPanel value="materials">Materials content</TabPanel>
</Tabs>