您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

18 行
399 B

  1. import {createMagazineCover} from "./MagazineCoverComponent";
  2. export default {
  3. title: 'Components/Magazine Cover',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. args: {
  8. imageSrc: 'https://source.unsplash.com/OD9EOzfSOh0/1110x440',
  9. }
  10. }
  11. const Template = ({...args}) => {
  12. return createMagazineCover({...args});
  13. };
  14. export const MagazineCover = Template.bind({});
  15. MagazineCover.args = {};