17 lines
No EOL
417 B
TypeScript
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`
|
|
},
|
|
}; |