File size: 578 Bytes
e3e35d5 abcce44 e3e35d5 abcce44 e3e35d5 abcce44 63c1afb e3e35d5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import React from 'react';
export default function InputField({ value, title, id, rows, handleClick, handleChange }) {
return (
<div className="">
<div className="text-base font-normal max-w-40 text-gray-600">
{title}
</div>
<div className="mt-2 mr-4">
<textarea value={value} onClick={(e) => handleClick(e)} onChange={(e) => handleChange(e)} id={id} name={id} rows={rows} className="font-sans p-2 shadow-sm border border-solid border-gray-300 block w-full text-gray-600 sm:text-sm rounded-md"></textarea>
</div>
</div>
);
} |