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