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