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