fbredius/storybook

View on GitHub
examples/official-storybook/stories/addon-docs/ts-button.stories.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from 'react';
import { action } from '@storybook/addon-actions';
import Button, { Type } from '../../components/TsButton';

export default {
  title: 'Addons/Docs/TsButton',
  component: Button,
  parameters: {
    viewMode: 'story',
  },
};

type Story = () => any;

export const SimpleButton: Story = () => {
  const x = 0;
  return <Button onClick={action('button clicked')}>OK {x}</Button>;
};

const typeOptions = {
  Default: 'default',
  Action: 'action',
};

export const WithType = () => <Button type={typeOptions.Default as Type}>Label</Button>;