Update tinker_tickets_react/src/Components/CreateTicket/TicketSelect.tsx

This commit is contained in:
2025-11-29 14:05:20 -05:00
parent 4d4dcdf705
commit d2feeb3a56

View File

@ -16,8 +16,9 @@ value,
options, options,
updateField, updateField,
}) => { }) => {
return ( <div className="detail-quarter"> <label>{label}</label> return (
<div className="detail-quarter">
<label>{label}</label>
<select <select
value={value} value={value}
@ -30,8 +31,6 @@ return ( <div className="detail-quarter"> <label>{label}</label>
))} ))}
</select> </select>
</div> </div>
); );
}; };