church-website/src/components/ContactPerson/ContactPersonList.stories.tsx
2024-11-19 10:58:33 +01:00

33 lines
No EOL
755 B
TypeScript

import { Meta, StoryObj } from '@storybook/react'
import { ContactPersonList } from './ContactPersonList'
const meta: Meta<typeof ContactPersonList> = {
component: ContactPersonList,
}
type Story = StoryObj<typeof ContactPersonList>;
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"
}
]
},
}