Added the value & default properties to the InputGroup.jsx

This commit is contained in:
2023-01-01 04:28:25 +01:00
parent a52ef16889
commit 1aee1f8f32

View File

@ -8,7 +8,7 @@ export const InputGroup = (props) => {
<h4>{props.title}</h4>
<p>{props.description}</p>
</div>
<TextBox placeholder={props.title} autoComplete={props.autoComplete}/>
<TextBox placeholder={props.title} autoComplete={props.autoComplete} value={props.value} default={props.default}/>
</div>
);
}