feat: create story for connected wallet
This commit is contained in:
parent
32eaa90f57
commit
9796807d63
|
@ -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: {},
|
||||
}
|
Loading…
Reference in New Issue