123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // export const form = {
- // selects: {
- // eventType: {
- // id: 1,
- // type: "select",
- // name: "eventType",
- // label: "Choose Event Type",
- // options:['Select Event Type', 'Triathlon', 'Marathon','Cycling'],
- // value: ""
- // },
- // eventTitle: {
- // id: 2,
- // type: "select",
- // name: "eventTitle",
- // label: "Choose Event Title",
- // options:[],
- // value: ""
- // }
- // },
- // pictures: [
- // {
- // id: 3,
- // type: "input",
- // name: "pictures",
- // label: "Picture",
- // placeholder: 'Enter picture url',
- // value: ""
- // }
- // ]
- // }
- export const addPhotogalaryInitialValue = {
- eventType: "",
- eventTytle: "",
- pictures: [
- {
- id: '1',
- name: 'picture',
- value: ""
- }
- ]
- }
|