13 lines
293 B
JavaScript
13 lines
293 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} />
|
|
</label>
|
|
);
|
|
}
|
|
|
|
export default InputField;
|