This package has been deprecated

Author message:

Package deprecated

@hnordt/reax-textarea

1.0.0 • Public • Published

Reax Textarea

Bootstrap Textarea component for React

npm version

PropTypes

{
  name: PropTypes.string,
  rows: PropTypes.number,
  placeholder: PropTypes.string,
  value: PropTypes.string,
  maxLength: PropTypes.number,
  autoFocus: PropTypes.bool,
  readOnly: PropTypes.bool,
  disabled: PropTypes.bool,
  onFocus: PropTypes.func,
  onChange: PropTypes.func,
  onBlur: PropTypes.func
}

Usage

npm install --save @hnordt/reax-textarea
import React from 'react';
import Textarea from '@hnordt/reax-textarea';

const Foo = () => (
  <Textarea
    placeholder="Foo"
    value="Bar"
    onChange={event => console.log(event.target.value)} />
);

export default Foo;

Readme

Keywords

none

Package Sidebar

Install

npm i @hnordt/reax-textarea

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • hnordt