feat: create story for recovery mechanism

This commit is contained in:
RadoslavDimchev 2023-08-28 11:48:02 +03:00
parent 45014fed2b
commit 728bab2b80
1 changed files with 20 additions and 0 deletions

View File

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