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.
 
 
 
 

37 line
873 B

  1. import {createParticipationTeaser} from "./ParticipationTeaserComponent";
  2. export default {
  3. title: 'Components/ParticipationTeaser',
  4. args: {
  5. kicker: 'Noch 6 Tage offen',
  6. progress: 65,
  7. headline: 'Ideen zur Stärkung der Innenstädte und Ortskerne',
  8. copy: 'Die Auswirkungen der Corona-Pandemie treffen die Innenstädte und Ortskerne. Wir sammeln Ideen, um den neuen Herausforderungen zu begegnen.',
  9. moreCta: {
  10. label: 'Mehr Infos',
  11. link: '#',
  12. target: '_self',
  13. },
  14. participateCta: {
  15. label: 'Jetzt beteiligen',
  16. link: '#',
  17. target: '_self',
  18. }
  19. },
  20. argTypes: {
  21. },
  22. globals: {
  23. backgrounds: {
  24. value: "lightblue"
  25. }
  26. },
  27. }
  28. const Template = ({...args}) => {
  29. return createParticipationTeaser({...args});
  30. };
  31. export const ParticipationTeaser = Template.bind({});
  32. ParticipationTeaser.args = {};