remove storybook

This commit is contained in:
Elio Bischof
2023-06-07 13:54:03 +02:00
parent 8e81d3bdb8
commit 23ced28469
24 changed files with 73 additions and 7083 deletions

View File

@@ -1,20 +0,0 @@
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",
}
};