mirror of
https://github.com/aljazceru/landscape-template.git
synced 2025-12-17 06:14:27 +01:00
21 lines
568 B
TypeScript
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 = {
|
|
}
|
|
|
|
|