You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
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 = {};