feat: create story for connected wallet

This commit is contained in:
RadoslavDimchev 2023-09-20 21:25:38 +03:00
parent 32eaa90f57
commit 9796807d63
1 changed files with 19 additions and 0 deletions

View File

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