|
- export const SurveySimple = [
- {
- legend: null,
- name: 'vote',
- options: [
- 'Sehr gut, angesichts der hohen Inzidenzen',
- 'Mir ist das egal',
- 'Die Regel ist zu hart',
- ]
- }
- ]
-
- export const SurveyComplex = [
- {
- legend: 'Sie sind?',
- name: 'group',
- options: [
- 'Couch-Trainer',
- 'Fan',
- 'Fußball-Profi',
- ]
- },
- {
- legend: 'Soll der Bundestrainer abtreten?',
- name: 'choice',
- options: [
- 'ja',
- 'nein',
- ]
- }
- ]
|