| 12345678910111213141516171819202122232425262728 |
- const profileForm = [
- [
- {
- type: 'input-string',
- id: 1,
- responses: null,
- },
- {
- type: 'tag-cloud',
- id: 2,
- responses: ['red', 'blue', 'green', 'white', 'black'],
- },
- ],
- [
- {
- type: 'input-string',
- id: 3,
- responses: null,
- },
- {
- type: 'input-string',
- id: 4,
- responses: null,
- },
- ],
- ]
-
- export { profileForm }
|