format js file
This commit is contained in:
@@ -4,8 +4,8 @@ import './styles/inputBox.css';
|
||||
const InputBox = ({ id, name, label, onChange, value, type, readOnly, hidden }) => {
|
||||
return (
|
||||
<>
|
||||
<label htmlFor={id}>{label}</label>
|
||||
<input readOnly={readOnly} hidden={hidden} autoFocus onChange={onChange} value={value} id={id} name={name} type={type} />
|
||||
<label htmlFor={id}>{label}</label>
|
||||
<input readOnly={readOnly} hidden={hidden} autoFocus onChange={onChange} value={value} id={id} name={name} type={type} />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user