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

24 lines
No EOL
444 B
TypeScript

import { Meta, StoryObj } from '@storybook/nextjs-vite'
import { ChurchCard } from './ChurchCard'
const meta: Meta<typeof ChurchCard> = {
component: ChurchCard,
}
type Story = StoryObj<typeof ChurchCard>;
export default meta
export const Default: Story = {
args: {
church: "anna",
backgroundColor: "#E0DAE5"
},
}
export const Small: Story = {
args: {
church: "anna",
backgroundColor: "#E0DAE5",
width: 100
},
}