0.1.0 • Published 9 years ago

react-autosize v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
9 years ago

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>
    );
  }
});