photogalaryFormData.js 951 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // export const form = {
  2. // selects: {
  3. // eventType: {
  4. // id: 1,
  5. // type: "select",
  6. // name: "eventType",
  7. // label: "Choose Event Type",
  8. // options:['Select Event Type', 'Triathlon', 'Marathon','Cycling'],
  9. // value: ""
  10. // },
  11. // eventTitle: {
  12. // id: 2,
  13. // type: "select",
  14. // name: "eventTitle",
  15. // label: "Choose Event Title",
  16. // options:[],
  17. // value: ""
  18. // }
  19. // },
  20. // pictures: [
  21. // {
  22. // id: 3,
  23. // type: "input",
  24. // name: "pictures",
  25. // label: "Picture",
  26. // placeholder: 'Enter picture url',
  27. // value: ""
  28. // }
  29. // ]
  30. // }
  31. export const addPhotogalaryInitialValue = {
  32. eventType: "",
  33. eventTytle: "",
  34. pictures: [
  35. {
  36. id: '1',
  37. name: 'picture',
  38. value: ""
  39. }
  40. ]
  41. }