feat: create story for recovery phrase
This commit is contained in:
parent
41a6667563
commit
1867d90f38
|
@ -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,
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue