import {Input} from 'react-inline-forms-component'
-
Input function: Input(type, className, name, value, id, placeholder, onChange, disabled).
eg: Input(text, 'classA, classB', 'foo', 'bar', 'foo', 'Example', handleChange, false)
.\ -
Select function: Select(selectClassName, optionsClassName, Name, value, id, onChange, arr).
where arr is an array of options valueeg: Select('classesA', 'classesB', 'cars', 'car A', 'cars', handleChange, arr)