fbredius/storybook

View on GitHub
examples/cra-ts-essentials/src/stories/Button.stories.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { Story, Meta } from '@storybook/react';

import { Button, ButtonProps } from './Button';

export default {
  title: 'Example/Button',
  component: Button,
  argTypes: {
    backgroundColor: { control: 'color' },
    label: { defaultValue: 'Button' },
  },
} as Meta;

const Template: Story<ButtonProps> = (args) => <Button {...args} />;

export const Primary = Template.bind({});

Primary.args = {
  label: 'foo',
  size: 'large',
};

// export const Secondary = Template.bind({});