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