24 lines
No EOL
438 B
TypeScript
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
|
|
},
|
|
} |