25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
327 B

  1. import {createCommonContentArticle} from "./CommonContentArticleComponent";
  2. export default {
  3. title: 'Components/Common Content Article',
  4. args: {},
  5. }
  6. const Template = ({...args}) => {
  7. return createCommonContentArticle({...args});
  8. };
  9. export const CommonContentArticle = Template.bind({});
  10. CommonContentArticle.args = {};