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.
 
 
 
 

19 líneas
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 = {};