feat: add examples for validators story

This commit is contained in:
RadoslavDimchev 2023-09-25 18:38:54 +03:00
parent 89fef502be
commit 8ca20a49f0
1 changed files with 16 additions and 0 deletions

View File

@ -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: () => {},
},
}