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.
 
 
 
 

31 wiersze
495 B

  1. export const SurveySimple = [
  2. {
  3. legend: null,
  4. name: 'vote',
  5. options: [
  6. 'Sehr gut, angesichts der hohen Inzidenzen',
  7. 'Mir ist das egal',
  8. 'Die Regel ist zu hart',
  9. ]
  10. }
  11. ]
  12. export const SurveyComplex = [
  13. {
  14. legend: 'Sie sind?',
  15. name: 'group',
  16. options: [
  17. 'Couch-Trainer',
  18. 'Fan',
  19. 'Fußball-Profi',
  20. ]
  21. },
  22. {
  23. legend: 'Soll der Bundestrainer abtreten?',
  24. name: 'choice',
  25. options: [
  26. 'ja',
  27. 'nein',
  28. ]
  29. }
  30. ]