Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

14 строки
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 = {};