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