25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
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. };