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

21 行
386 B

  1. import {createSuperlistSection} from "./SuperlistComponent";
  2. export default {
  3. title: 'Sections/Superlist',
  4. args: {
  5. }
  6. };
  7. const Template = ({...args}) => {
  8. return createSuperlistSection({...args});
  9. };
  10. export const Superlist = Template.bind({});
  11. Superlist.args = {};
  12. export const SuperlistCentered = Template.bind({});
  13. SuperlistCentered.args = {
  14. centered: true
  15. };