Created the TextArea.jsx
This commit is contained in:
parent
ab5423ea7f
commit
d91707a378
@ -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} />
|
||||
)
|
Reference in New Issue
Block a user