Fix name of component

This commit is contained in:
Bakhtiyor Ruziev
2019-09-24 15:39:33 +03:00
committed by GitHub
parent 43b17187da
commit e38d35f1f7

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')
);
```