Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

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