Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.47 KB

README.md

File metadata and controls

42 lines (28 loc) · 1.47 KB

TextArea React Component

NPM Size JavaScript Style Guide Coverage Status LICENSE

Install

npm install --save @idui/react-text-area
yarn add @idui/react-text-area

See props in Docs

Basic Example

import React, { useState } from 'react'
import TextArea from '@idui/react-text-area'

function Example() {
    const [value, setValue] = useState(providedValue);

    return <TextArea value={value} onChange={setValue} />;
}

See more details in storybook

License

MIT © [email protected]