Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

20 linhas
447 B

  1. import {printShareListItems} from "./PrintShareData";
  2. import {createPrintShare} from "./PrintShareComponent";
  3. export default {
  4. title: 'Components/Print Share',
  5. argTypes: {
  6. listItems: {
  7. name: 'Buttons',
  8. control: {type: 'object'},
  9. defaultValue: printShareListItems,
  10. },
  11. }
  12. }
  13. const Template = ({...args}) => {
  14. return createPrintShare({...args});
  15. };
  16. export const PrintShare = Template.bind({});
  17. PrintShare.args = {};