Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

19 lignes
358 B

  1. import {createIhkSwitch} from "./IHKSwitchComponent";
  2. export default {
  3. title: 'Components/IHK Switch',
  4. parameters: {
  5. layout: 'padded',
  6. },
  7. args: {
  8. currentIHK: 'Musterstadt',
  9. myIHK: 'Hamburg',
  10. }
  11. }
  12. const Template = ({...args}) => {
  13. return createIhkSwitch({...args});
  14. };
  15. export const IHKSwitch = Template.bind({});
  16. IHKSwitch.args = {};