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 line
383 B

  1. import {alphabet} from "./AZData";
  2. import {createAZ} from "./AZComponent";
  3. export default {
  4. title: 'Components/A-Z List',
  5. argTypes: {
  6. items: {
  7. name: 'Buchstaben',
  8. control: {type: 'object'},
  9. defaultValue: alphabet,
  10. },
  11. }
  12. }
  13. const Template = ({...args}) => {
  14. return createAZ({...args});
  15. };
  16. export const A_ZList = Template.bind({});
  17. A_ZList.args = {};