diff --git a/client/src/components/Canvas/views/AdminTabs/MEDataEntry.jsx b/client/src/components/Canvas/views/AdminTabs/MEDataEntry.jsx index 18ed766..f3ee9ba 100644 --- a/client/src/components/Canvas/views/AdminTabs/MEDataEntry.jsx +++ b/client/src/components/Canvas/views/AdminTabs/MEDataEntry.jsx @@ -111,14 +111,30 @@ const items = [ female: 550, total: 1100, }, + { + id: "r6", + section: "Gas", + volcano: "Ranier", + country: "US", + start: "2024-07-02", + end: "2027-05-12", + type: "Deployment", + vpi10: "Yes", + downstream: 1200, + male: 570, + female: 570, + total: 1400, + }, ]; export function MEDataEntry() { const [value, setValue] = useState(""); const [selection, setSelection] = useState([]); + const { register, handleSubmit, + reset, watch, formState: { errors }, } = useForm(); @@ -184,34 +200,36 @@ export function MEDataEntry() { - + Number of people benefitting from VDAP activities, disaggregate by sex - - - - - {/* padding for checkboxes */} - Section - Volcano - Country - Start Date of Assistance - End Date of Assistance - Assistance Type - VPI10 - Downstream Population - Male - Female - Total - - + {/* */} + + + + + + Section + Volcano + Country + Start Date of Assistance + End Date of Assistance + Assistance Type + VPI10 + Downstream Population + Male + Female + Total + + - - {rows} - - - + + {rows} + + + + {/* */} {/* Row actions aligned right */} @@ -223,8 +241,13 @@ export function MEDataEntry() { {/* Form Section */} - - + + Fill in Form @@ -237,7 +260,7 @@ export function MEDataEntry() { Start Date of Assistance: - + @@ -254,29 +277,29 @@ export function MEDataEntry() { End Date of Assistance: - + Downstream Affected Population: - + Male Population: - + Female Population: - + Total Population: - + @@ -290,7 +313,7 @@ export function MEDataEntry() { -