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.
 
 
 
 

23 rader
447 B

  1. import {createSearchForm} from "./SearchFormComponent";
  2. export default {
  3. title: 'Components/Search Form',
  4. parameters: {
  5. layout: 'padded',
  6. },
  7. args: {
  8. isExtended: false,
  9. }
  10. }
  11. const Template = ({...args}) => {
  12. return createSearchForm({...args});
  13. };
  14. export const SimpleSearchForm = Template.bind({});
  15. SimpleSearchForm.args = {};
  16. export const EventsSearchForm = Template.bind({});
  17. EventsSearchForm.args = {
  18. isExtended: true,
  19. };