Bachelorthesis_Code/frontend/src/components/InputField.js

13 lines
221 B
JavaScript

import React from "react";
function InputField(props) {
return (
<label>
<p>{props.LabelName}</p>
<input name={props.InputName} type={props.InputType} />
</label>
);
}
export default InputField;