Files
landscape-template/src/features/Profiles/pages/ProfilePage/MakerProjectsCard/MakerProjectsCard.stories.tsx
2022-10-04 15:29:52 +03:00

21 lines
568 B
TypeScript

import { ComponentStory, ComponentMeta } from '@storybook/react';
import MakerProjectsCard from './MakerProjectsCard';
export default {
title: 'Profiles/Profile Page/Projects Card',
component: MakerProjectsCard,
argTypes: {
backgroundColor: { control: 'color' },
},
} as ComponentMeta<typeof MakerProjectsCard>;
const Template: ComponentStory<typeof MakerProjectsCard> = (args) => <div className="max-w-[326px]"><MakerProjectsCard {...args as any} ></MakerProjectsCard></div>
export const Default = Template.bind({});
Default.args = {
}