import {printShareListItems} from "./PrintShareData"; import {createPrintShare} from "./PrintShareComponent"; export default { title: 'Components/Print Share', argTypes: { listItems: { name: 'Buttons', control: {type: 'object'}, defaultValue: printShareListItems, }, } } const Template = ({...args}) => { return createPrintShare({...args}); }; export const PrintShare = Template.bind({}); PrintShare.args = {};