Fully auto size react textarea component that can grow with content both in width and height
npm install react-textarea-auto-witdth-height   ![Github All Releases]() !example workflow
An easy to use replacement for textarea that can automatically resizes both horizontally and vertically as content changes.
``typescript
import { AutoTextArea } from 'react-textarea-auto-witdth-height'
const somePlace = () => (
Demo
https://react-textarea-auto-witdth-height-8j96.vercel.app/
Install
npm i react-textarea-auto-witdth-heightProps
Props are almost identical as native textarea, except
rows and cols are not supported, please use min-height and max-height to style the component instead.FAQ
$3
Reference the inner textarea
`js
(this.current = ref)} />
`Then focus on the ref
`js
this.current.focus();
``