Bachelorthesis_Code/frontend/src/components/InputField.js

14 lines
267 B
JavaScript
Raw Normal View History

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