import { Meta, StoryObj } from '@storybook/react' import { ContactPersonList } from './ContactPersonList' const meta: Meta = { component: ContactPersonList, } type Story = StoryObj; export default meta export const Default: Story = { args: { persons: [ { title: "Seelsorgeteam", description: `Pater Karl Hermann Lenz SAC (Pfarrvikar) pallottis@christophorus-berlin.de Lissy Eichert UAC l.eichert@christophorus-berlin. ` }, { title: "Pallottinische Gemeinschaft", description: `Lissy Eichert UAC l.eichert@christophorus-berlin.de` }, { title: "Kirechenvorstand", description: "Some contactinfo" } ] }, }