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
429 B

  1. import {howToListData} from "./HowToListData";
  2. import {createHowToList} from "./HowToListComponent";
  3. export default {
  4. title: 'Components/Howto-Liste',
  5. argTypes: {
  6. listItems: {
  7. name: 'listItems',
  8. control: {type: 'object'},
  9. defaultValue: howToListData,
  10. }
  11. }
  12. }
  13. const Template = ({...args}) => {
  14. return createHowToList({...args});
  15. }
  16. export const HowToList = Template.bind({});
  17. HowToList.args = {};