You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
455 B

  1. import {createCheckboxGroup} from "./CheckboxGroupComponent";
  2. export default {
  3. title: 'Components/Checkbox Group',
  4. args: {
  5. wrapperClass: 'ev-filter-wrapper',
  6. title: 'Klick zum Ausklappen',
  7. items: ['Dienstleistungen', 'Handel', 'Industrie', 'Verkehr'],
  8. namespace: 'branchen',
  9. },
  10. }
  11. const Template = ({...args}) => {
  12. return createCheckboxGroup({...args});
  13. };
  14. export const CheckboxGroup = Template.bind({});
  15. CheckboxGroup.args = {};