13 lines
No EOL
289 B
TypeScript
13 lines
No EOL
289 B
TypeScript
import { Meta, StoryObj } from '@storybook/react'
|
|
import { DonationAppeal } from './DonationAppeal'
|
|
|
|
const meta: Meta<typeof DonationAppeal> = {
|
|
component: DonationAppeal,
|
|
}
|
|
|
|
type Story = StoryObj<typeof DonationAppeal>;
|
|
export default meta
|
|
|
|
export const Default: Story = {
|
|
args: {},
|
|
} |