import type { Meta, StoryObj } from '@storybook/react-vite'; import { Button } from '../Button/Button.tsx'; import { Input } from '../Input/Input.tsx'; import { Label } from '../Label/Label.tsx'; import { Dialog } from './Dialog.tsx'; type Story = StoryObj; export default { args: { children: ( <> Edit profile Make changes to your profile here. Click save when you are done.
) }, component: Dialog } as Meta; export const Default: Story = {};