church-website/src/components/ContactPerson/ContactPerson.stories.tsx
2026-04-16 15:06:37 +02:00

17 lines
No EOL
417 B
TypeScript

import { Meta, StoryObj } from '@storybook/nextjs-vite'
import { ContactPerson } from './ContactPerson'
const meta: Meta<typeof ContactPerson> = {
component: ContactPerson,
}
type Story = StoryObj<typeof ContactPerson>;
export default meta
export const Default: Story = {
args: {
title: "Kirechenvorstand",
description: `Stellv. Vorsitzender: Michael Wolter
Vorsitzender: Pfarrer Ulrich Kotzur`
},
};