選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

19 行
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 = {};