import type { Meta, StoryObj } from '@storybook/sveltekit'; import ContactCard from './ContactCard.svelte'; const meta = { title: 'Molecules/ContactCard', component: ContactCard, tags: ['autodocs'], } satisfies Meta; export default meta; type Story = StoryObj; export const Standard: Story = { args: { contact: { name: 'Maria Müller', role: 'Sprecherin', email: 'maria@example.org', phone: '01234 567890', note: 'Erreichbar Mo–Fr', organisations: [{ name: 'BI Steigerwald' }], }, }, }; export const Minimal: Story = { args: { contact: { name: 'Hans Weber', role: 'Presse', email: 'presse@example.org' } }, };