Skip to content

Commit

Permalink
docs: update tabs stories
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyzif committed Nov 21, 2024
1 parent 28a51b7 commit 5d341fc
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions src/components/data-display/Tabs/Tabs.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,27 @@ import { Tabs } from 'src/components/data-display/Tabs/Tabs'
const meta: Meta<typeof Tabs> = {
title: 'Components/Data Display/Tabs',
component: Tabs,

args: {},
args: {
defaultActiveKey: '1',
items: [
{
label: 'Tab 1',
key: '1',
children: 'Tab 1',
},
{
label: 'Tab 2',
key: '2',
children: 'Tab 2',
disabled: true,
},
{
label: 'Tab 3',
key: '3',
children: 'Tab 3',
},
],
},
}
export default meta

Expand Down

0 comments on commit 5d341fc

Please sign in to comment.