No Description

index.stories.jsx 420B

123456789101112131415161718
  1. import React from 'react';
  2. import { Button } from 'antd';
  3. import { action } from '@storybook/addon-actions';
  4. export default {
  5. component: Button,
  6. title: 'Button',
  7. };
  8. export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;
  9. export const emoji = () => (
  10. <Button onClick={action('clicked')}>
  11. <span role="img" aria-label="so cool">
  12. 😀 😎 👍 💯
  13. </span>
  14. </Button>
  15. );