format js file

This commit is contained in:
np.w
2021-03-02 17:00:10 -06:00
parent 025c49868c
commit b95135f144
+2 -2
View File
@@ -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} />
</>
)
}