Bachelorthesis_Code/frontend/src/components/InputField.js

13 lines
221 B
JavaScript
Raw Normal View History

2021-06-21 01:51:15 +00:00
import React from "react";
function InputField(props) {
return (
<label>
<p>{props.LabelName}</p>
<input name={props.InputName} type={props.InputType} />
</label>
);
}
export default InputField;