feat: create story for recovery phrase

This commit is contained in:
RadoslavDimchev 2023-08-31 06:37:15 +03:00
parent 41a6667563
commit 1867d90f38
1 changed files with 22 additions and 0 deletions

View File

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