33 lines
No EOL
755 B
TypeScript
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"
|
|
}
|
|
]
|
|
},
|
|
} |