import { Meta, StoryObj } from '@storybook/react'; import { z } from 'zod'; import { Button } from '../button'; import { Form } from './form'; import { FormDrawer } from './form-drawer'; import { Input } from './input'; import { Select } from './select'; import { Textarea } from './textarea'; const MyForm = ({ hideSubmit = false }: { hideSubmit?: boolean }) => { return (
); }; const meta: Meta = { component: MyForm, }; export default meta; type Story = StoryObj