feat: add stories for consensus client card

This commit is contained in:
RadoslavDimchev 2023-10-31 18:36:42 +02:00
parent c01a0e2fb6
commit f8e305be44
1 changed files with 17 additions and 1 deletions

View File

@ -14,6 +14,22 @@ const meta = {
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
export const Nethermind: Story = {
args: { name: 'Nethermind', icon: '/icons/nethermind-circle.png' },
}
export const Besu: Story = {
args: { name: 'Besu', icon: '/icons/hyperledger-besu-circle.png' },
}
export const Geth: Story = {
args: { name: 'Geth', icon: '/icons/gethereum-mascot-circle.png' },
}
export const Erigon: Story = {
args: { name: 'Erigon', icon: '/icons/erigon-circle.png' },
}
export const Nimbus: Story = {
args: { name: 'Nimbus', icon: '/icons/nimbus-disabled.svg' },
}