Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

14 řádky
287 B

  1. import {createSkipButton} from './SkipButtonComponent';
  2. export default {
  3. title: 'Atoms/Skip-Button',
  4. argTypes: {},
  5. };
  6. const Template = ({label, ...args}) => {
  7. return createSkipButton({label, ...args});
  8. };
  9. export const SkipButton = Template.bind({});
  10. SkipButton.args = {};