feat: add example with selected all for story

This commit is contained in:
RadoslavDimchev 2023-11-21 06:49:18 +02:00
parent 7bd8543799
commit 70a49f4a2b
1 changed files with 8 additions and 0 deletions

View File

@ -18,5 +18,13 @@ type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
filteredValidators: VALIDATORS_DATA,
isAllSelected: false,
},
}
export const AllSelected: Story = {
args: {
filteredValidators: VALIDATORS_DATA,
isAllSelected: true,
},
}