Skip to content

Instantly share code, notes, and snippets.

@tmontoya-ias
Created April 28, 2016 17:52
Show Gist options
  • Save tmontoya-ias/079ce8684ea8d90434a682f20060e8ba to your computer and use it in GitHub Desktop.
Save tmontoya-ias/079ce8684ea8d90434a682f20060e8ba to your computer and use it in GitHub Desktop.
const selectJustificacionNoGeren = ({visible}) =>{
console.log("selectJustificacionNoGeren");
return (
<Col xs={12} md={4} lg={4}>
<dt>
<span>Justificación no gerenciamiento Component</span>
</dt>
<dt>
<ComboBox
labelInput="Justificación no gerenciamiento"
value={justifyNoGeren.value}
onBlur={justifyNoGeren.onBlur}
valueProp={'id'}
textProp={'value'}
{...justifyNoGeren}
data={selectsReducer.get(constants.JUSTIFICATION_NO_RM) || []}
defaultValue={justifyNoGeren.value === undefined ? '' : infoClient.justificationForNoRM}
/>
</dt>
</Col>
)};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment