Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

28 wiersze
798 B

  1. import {createParticipationListItem} from "./ParticipationListItemComponent";
  2. export default {
  3. title: 'Components/Participation List Item',
  4. args: {
  5. kicker: 'Noch 5 Tage offen',
  6. progress: 60,
  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. }
  21. const Template = ({...args}) => {
  22. return createParticipationListItem({...args});
  23. };
  24. export const ParticipationListItem = Template.bind({});
  25. ParticipationListItem.args = {};