react-input-textarea

Have your React input and text area be styled, right down to the placeholder. Have them be styled inlined, without any external CSS.

Usage no npm install needed!

<script type="module">
  import reactInputTextarea from 'https://cdn.skypack.dev/react-input-textarea';
</script>

README

Stylable React Input and Text Area

Have your React input and text area be styled, right down to the placeholder. Have them be styled inlined, without any external CSS.

Usage

Install react-input-textarea using npm:

npm install react-input-textarea

Then use it in your code like so:

var Input = require('react-input-textarea').Input;
var TextArea = require('react-input-textarea').TextArea;

var MyComponent = React.createClass({
  render: function () {
    return (
      <div>
        <Input />
        <TextArea />
      </div>
    );
  }
});

License

This is a fork of react-input-placeholder. react-input-textarea is MIT Licensed, and all copyrights belong to Enigma Technologies, Inc.