feat: add examples for validators story
This commit is contained in:
parent
89fef502be
commit
8ca20a49f0
|
@ -18,3 +18,19 @@ export const Default: Story = {
|
|||
changeValidatorCountHandler: () => {},
|
||||
},
|
||||
}
|
||||
|
||||
export const WithoutValidatorCount: Story = {
|
||||
args: {
|
||||
validatorCount: 0,
|
||||
addValidatorHandler: () => {},
|
||||
changeValidatorCountHandler: () => {},
|
||||
},
|
||||
}
|
||||
|
||||
export const WithLongValidatorCount: Story = {
|
||||
args: {
|
||||
validatorCount: 2000,
|
||||
addValidatorHandler: () => {},
|
||||
changeValidatorCountHandler: () => {},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue