Brief-Generator/frontend/src/components/TextInput.jsx

19 lines
341 B
JavaScript

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