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

13 строки
303 B

  1. import {createTextWithHeadline} from "./TextWithHeadlineComponent";
  2. export default {
  3. title: 'Components/Text With Headline',
  4. args: {},
  5. }
  6. const Template = ({...args}) => {
  7. return createTextWithHeadline({...args});
  8. };
  9. export const TextWithHeadline = Template.bind({});
  10. TextWithHeadline.args = {};