feat: create story for exec client cards

This commit is contained in:
RadoslavDimchev 2023-10-24 07:02:00 +03:00
parent 5216a2d1f4
commit 6341ba9a40
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import type { Meta, StoryObj } from '@storybook/react'
import ExecClientCards from './ExecClientCards'
const meta = {
title: 'ValidatorOnboarding/ExecClientCards',
component: ExecClientCards,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
} satisfies Meta<typeof ExecClientCards>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}

View File

@ -1,5 +1,6 @@
import type { Meta, StoryObj } from '@storybook/react'
import { withRouter } from 'storybook-addon-react-router-v6'
import ValidatorSetup from './ValidatorSetup'
const meta = {