react-autosize
v0.1.0
Published
React component to adjust textarea height automatically to fit text
Downloads
7
Maintainers
Readme
react-textarea-autosize
React component to adjust textarea height automatically to fit text.
Install
npm install react-textarea-autosize --save
Example
var React = require('react');
var Textarea = require('react-textarea-autosize');
var TextareaDemo = React.createClass({
render: function () {
return (
<Textarea>
When you enter more text in this textarea,
its height increases automatically instead of showing a scrollbar.
</Textarea>
);
}
});