This is a react method to quickly combine buttons with Auto Height Textarea
npm install @acrool/react-auto-height-textarea
Auto-height Textarea element.





^1.0.0 support react >=18.0.0 <20.0.0
- Auto-height Textarea element.
``bash`
yarn add @acrool/react-auto-height-textarea
add in your index.tsx
`tst`
import "@acrool/react-auto-height-textarea/dist/index.css";
add in your App.tsx
`tsx
import AutoHeightTextarea from '@acrool/react-auto-height-textarea';
const Example = () => {
const [value, setValue] = useState('');
return
onChange={e => setValue(e.target.value)}
placeholder="Type your message"
rows={1}
/>;
}
``