No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

20 líneas
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 = {};