import { Fragment } from 'react'; 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 { Sheet } from './Sheet.tsx'; type Story = StoryObj; export default { component: Sheet } as Meta; export const Default: Story = { args: { children: ( Edit profile Make changes to your profile here. Click save when you are done.
) } };