mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:11:07 +08:00
Update AccountForm.stories to CSF3 types
This commit is contained in:
parent
5808c979a9
commit
45981ff71a
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||||
import { ComponentStoryObj, ComponentMeta } from '@storybook/react';
|
||||
import { screen } from '@testing-library/dom';
|
||||
import userEvent from '@testing-library/user-event';
|
||||
import { AccountForm } from './AccountForm';
|
||||
@ -16,7 +16,7 @@ export default {
|
||||
// export const Standard = (args: AccountFormProps) => <AccountForm {...args} />;
|
||||
// Standard.args = { passwordVerification: false };
|
||||
|
||||
export const Standard: ComponentStory<typeof AccountForm> = {
|
||||
export const Standard: ComponentStoryObj<typeof AccountForm> = {
|
||||
// render: (args: AccountFormProps) => <AccountForm {...args} />,
|
||||
args: { passwordVerification: false },
|
||||
};
|
||||
@ -53,7 +53,7 @@ export const StandardFailHover = {
|
||||
},
|
||||
};
|
||||
|
||||
export const Verification: ComponentStory<typeof AccountForm> = {
|
||||
export const Verification: ComponentStoryObj<typeof AccountForm> = {
|
||||
args: { passwordVerification: true },
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user