Loëck Vézien
7 years ago
No known key found for this signature in database
GPG Key ID: CBCDCE384E853AC4
2 changed files with
8 additions and
2 deletions
-
src/components/Breadcrumb/stories.js
-
src/components/base/Tabs/stories.js
|
|
@ -10,7 +10,10 @@ const stories = storiesOf('Breadcrumb', module) |
|
|
|
|
|
|
|
stories.add('basic', () => ( |
|
|
|
<Breadcrumb |
|
|
|
currentStep={number('currentStep', 1)} |
|
|
|
currentStep={number('currentStep', 1, { |
|
|
|
min: 1, |
|
|
|
max: 4, |
|
|
|
})} |
|
|
|
items={[ |
|
|
|
{ label: 'Amount' }, |
|
|
|
{ label: 'Summary' }, |
|
|
|
|
|
@ -12,7 +12,10 @@ const stories = storiesOf('Tabs', module) |
|
|
|
|
|
|
|
stories.add('basic', () => ( |
|
|
|
<Tabs |
|
|
|
index={number('index', 0)} |
|
|
|
index={number('index', 0, { |
|
|
|
min: 0, |
|
|
|
max: 1, |
|
|
|
})} |
|
|
|
onTabClick={action('onTabClick')} |
|
|
|
items={[ |
|
|
|
{ |
|
|
|