homework 2 done

This commit is contained in:
2023-08-03 19:52:53 +02:00
parent c230948b57
commit 8d75b18f61
53 changed files with 1631 additions and 510 deletions

View File

@@ -0,0 +1,18 @@
import type { Meta, StoryObj } from '@storybook/react'
import { RecoverPassword } from './'
const meta = {
title: 'Auth/Recover password',
component: RecoverPassword,
tags: ['autodocs'],
} satisfies Meta<typeof RecoverPassword>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
onSubmit: data => console.info(data),
},
}