Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

24 rader
442 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 = {};
  17. export const IHKSwitchZip = Template.bind({});
  18. IHKSwitchZip.args = {
  19. zip: true
  20. };