OperationCode/front-end

View on GitHub
components/ReusableSections/DonateSection/__stories__/DonateSection.stories.tsx

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import React from 'react';
import { Meta, StoryObj } from '@storybook/react';
import DonateSection from '../DonateSection';

type DonateSectionStoryType = StoryObj<React.FC>;

const meta: Meta<typeof DonateSection> = {
  title: 'ReusableSections/DonateSection',
  component: DonateSection,
};

export default meta;

export const Default: DonateSectionStoryType = {
  render: args => <DonateSection {...args} />,
};