mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 13:52:20 +00:00
21 lines
387 B
TypeScript
21 lines
387 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
|
|
import VerifyEmailForm from './VerifyEmailForm';
|
|
|
|
const meta: Meta<typeof VerifyEmailForm> = {
|
|
title: 'VerifyEmailForm',
|
|
component: VerifyEmailForm,
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof VerifyEmailForm>;
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
code: 'xyz',
|
|
submit: true,
|
|
userId: "123",
|
|
}
|
|
};
|