feat: add more examples to validators menu story

This commit is contained in:
RadoslavDimchev 2023-09-27 17:46:46 +03:00
parent 55250fa278
commit db499df44f
1 changed files with 27 additions and 3 deletions

View File

@ -20,11 +20,11 @@ export const Default: Story = {
},
}
export const WithoutValidatorCount: Story = {
export const ClientSetupLabel: Story = {
args: {
validatorCount: 0,
validatorCount: 2,
changeValidatorCountHandler: () => {},
label: DEPOSIT_SUBTITLE,
label: 'How many Validators would you like to run?',
},
}
@ -35,3 +35,27 @@ export const WithLongValidatorCount: Story = {
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: '',
},
}