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

18 行
291 B

  1. import {createFooter} from "./FooterComponent";
  2. export default {
  3. title: 'Components/Footer',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. args: {
  8. }
  9. }
  10. const Template = ({...args}) => {
  11. return createFooter({...args});
  12. };
  13. export const Footer = Template.bind({});
  14. Footer.args = {};