Created the TextArea.jsx

This commit is contained in:
Mathias Wagner 2023-05-30 22:31:20 +02:00
parent ab5423ea7f
commit d91707a378
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,5 @@
import "./styles.sass";
export const TextArea = ({value, onChange, readOnly = false}) => (
<textarea className="area" rows="10" value={value} onChange={onChange} readOnly={readOnly} />
)