Files
react-test/docs/data/joy/components/tabs/TabsBasic.tsx.preview

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
349 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<Tabs aria-label="Basic tabs" defaultValue={0}>
<TabList>
<Tab>First tab</Tab>
<Tab>Second tab</Tab>
<Tab>Third tab</Tab>
</TabList>
<TabPanel value={0}>
<b>First</b> tab panel
</TabPanel>
<TabPanel value={1}>
<b>Second</b> tab panel
</TabPanel>
<TabPanel value={2}>
<b>Third</b> tab panel
</TabPanel>
</Tabs>