Discussions

Tabs

<Tabs />

Overview

The <Tabs /> component is used to section off and organize UI elements, like the form.

Each Tab must be wrapped by the TabPane component, available for import from the Tabs component. The TabPane also accepts a label as a prop to display to the user

Code example

import { Tabs } from '@threekit-tools/treble';

const { TabPane } = Tabs;

const App = () => {
  return (
    <Tabs>
      <TabPane label="Section 1 Heading">Section 1 content</TabPane>
      <TabPane label="Section 2 Heading">Section 2 content</TabPane>
    </Tabs>
  );
};

Props

TabPane

TypeDescriptionTypeDefault
labelThe title to give the item in the Accordion.string''