feat: add more examples to validators menu story
This commit is contained in:
parent
55250fa278
commit
db499df44f
|
@ -20,11 +20,11 @@ export const Default: Story = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export const WithoutValidatorCount: Story = {
|
export const ClientSetupLabel: Story = {
|
||||||
args: {
|
args: {
|
||||||
validatorCount: 0,
|
validatorCount: 2,
|
||||||
changeValidatorCountHandler: () => {},
|
changeValidatorCountHandler: () => {},
|
||||||
label: DEPOSIT_SUBTITLE,
|
label: 'How many Validators would you like to run?',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,3 +35,27 @@ export const WithLongValidatorCount: Story = {
|
||||||
label: DEPOSIT_SUBTITLE,
|
label: DEPOSIT_SUBTITLE,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const WithoutValidatorCount: Story = {
|
||||||
|
args: {
|
||||||
|
validatorCount: 0,
|
||||||
|
changeValidatorCountHandler: () => {},
|
||||||
|
label: DEPOSIT_SUBTITLE,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const WithoutLabel: Story = {
|
||||||
|
args: {
|
||||||
|
validatorCount: 2,
|
||||||
|
changeValidatorCountHandler: () => {},
|
||||||
|
label: '',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const WithoutValues: Story = {
|
||||||
|
args: {
|
||||||
|
validatorCount: 0,
|
||||||
|
changeValidatorCountHandler: () => {},
|
||||||
|
label: '',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue