const FormInput = props => { | |
switch (props.type) { | |
case 'radio': | |
case 'checkbox': | |
return CheckInput(props); | |
case 'select': | |
return SelectInput(props); | |
case 'textarea': | |
return TextAreaInput(props); | |
default: | |
return TextInput(props); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment