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.
 
 
 
 

14 satır
236 B

  1. import {createCard} from "./CardComponent";
  2. export default {
  3. title: 'Components/Card',
  4. args: {},
  5. }
  6. const Template = ({...args}) => {
  7. return createCard({...args});
  8. };
  9. export const Card = Template.bind({});
  10. Card.args = {};