feat: create story for confirm phrase
This commit is contained in:
parent
892b64d38e
commit
737378e010
|
@ -0,0 +1,20 @@
|
||||||
|
import type { Meta, StoryObj } from '@storybook/react'
|
||||||
|
|
||||||
|
import ConfirmRecoveryPhrase from './ConfirmRecoveryPhrase'
|
||||||
|
|
||||||
|
const meta = {
|
||||||
|
title: 'ValidatorOnboarding/ConfirmRecoveryPhrase',
|
||||||
|
component: ConfirmRecoveryPhrase,
|
||||||
|
parameters: {
|
||||||
|
layout: 'centered',
|
||||||
|
},
|
||||||
|
tags: ['autodocs'],
|
||||||
|
argTypes: {},
|
||||||
|
} satisfies Meta<typeof ConfirmRecoveryPhrase>
|
||||||
|
|
||||||
|
export default meta
|
||||||
|
type Story = StoryObj<typeof meta>
|
||||||
|
|
||||||
|
export const Page: Story = {
|
||||||
|
args: {},
|
||||||
|
}
|
Loading…
Reference in New Issue