diff --git a/src/components/General/ValidatorNameAddress.stories.tsx b/src/components/General/ValidatorNameAddress.stories.tsx new file mode 100644 index 00000000..0e79a7f9 --- /dev/null +++ b/src/components/General/ValidatorNameAddress.stories.tsx @@ -0,0 +1,19 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import ValidatorNameAddress from './ValidatorNameAddress' + +const meta = { + title: 'General/ValidatorNameAddress', + component: ValidatorNameAddress, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: { + number: 1, + address: 'zQ3asdf9d4Gs0', + }, +}