1 2 3 4 5
function Option({ value, body }) { return <option value={value}>{body}</option>; } export default Option;