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 { Select } from '../Select/Select.tsx'; import { Card } from './Card.tsx'; type Story = StoryObj; export default { args: { children: ( <> Create project Deploy your new project in one-click.
) }, component: Card, tags: ['autodocs'] } as Meta; export const Default: Story = {};