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

24 lines
No EOL
438 B
TypeScript

import { Meta, StoryObj } from '@storybook/react'
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
},
}