Tabs is a component that makes navigating between sections of related content possible, displaying one section at a time.
How to use Tabs
Use Tabs if the content can be separated into sections that make sense as standalone pieces of information.
Be aware that the users will not see all the content at the same time. Make sure the first section is the most relevant one.
Code examples
<TabsdefaultTab="first">
<Tabs.Listvariant="vertical-divider">
<Tabs.TabpanelId="first">First</Tabs.Tab>
<Tabs.TabpanelId="second">Second</Tabs.Tab>
<Tabs.TabpanelId="third">Third</Tabs.Tab>
</Tabs.List>
<Tabs.Panelid="first">Content for the first tab</Tabs.Panel>
<Tabs.Panelid="second">Content for the second tab</Tabs.Panel>
<Tabs.Panelid="third">Content for the third tab</Tabs.Panel>