Bachelorthesis_Code/frontend/src/components/InputField.js
2021-06-23 03:40:37 +02:00

19 lines
368 B
JavaScript

import React from "react";
import "./Input.css";
function InputField(props) {
return (
<label className="input-field">
<p>{props.LabelName}</p>
<input
name={props.InputName}
onChange={props.onChange}
type={props.InputType}
placeholder={props.InputPlaceHolder}
/>
</label>
);
}
export default InputField;