import type { Meta, StoryObj } from '@storybook/react'; import Card from '.'; const meta = { title: 'Card', component: Card, parameters: { layout: 'centered', }, argTypes: { color: { options: ['client', 'productOwner', 'developer', 'admin', 'error'] }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Example: Story = { args: { color: 'developer', title: 'Card title', description: 'Card description', selected: true }, };