import type { Meta, StoryObj } from '@storybook/react-vite'; import { Button } from '../Button/Button.tsx'; import { Card } from '../Card/Card.tsx'; import { Input } from '../Input/Input.tsx'; import { Label } from '../Label/Label.tsx'; import { Tabs } from './Tabs.tsx'; type Story = StoryObj; export default { component: Tabs, tags: ['autodocs'] } as Meta; export const Default: Story = { args: { children: ( <> Account Password Account Make changes to your account here. Click save when you are done.
Password Change your password here. After saving, you will be logged out.
), className: 'w-[400px]', defaultValue: 'account' } };