mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 12:33:18 +00:00
19 lines
398 B
TypeScript
19 lines
398 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react'
|
|
|
|
import { RecoverPassword } from './'
|
|
|
|
const meta = {
|
|
component: RecoverPassword,
|
|
tags: ['autodocs'],
|
|
title: 'Auth/Recover password',
|
|
} satisfies Meta<typeof RecoverPassword>
|
|
|
|
export default meta
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
onSubmit: data => console.info(data),
|
|
},
|
|
}
|