Merge pull request #76 from theruziev/patch-1

Fix name of component
This commit is contained in:
Angelos Chalaris
2019-09-24 17:20:40 +03:00
committed by GitHub

View File

@ -54,7 +54,7 @@ function LimitedWordTextarea({ rows, cols, value, limit }) {
```jsx
ReactDOM.render(
<LimitedWordTextArea limit={5} value="Hello there!" />,
<LimitedWordTextarea limit={5} value="Hello there!" />,
document.getElementById('root')
);
```