diff options
author | Francesco Cioria <firefelix@gmail.com> | 2017-03-29 14:56:04 +0200 |
---|---|---|
committer | Francesco Cioria <firefelix@gmail.com> | 2017-03-29 14:56:04 +0200 |
commit | 6b9093fbadfb68620f3a87fef2abd0e04fc9d1f6 (patch) | |
tree | 1cd40f9e41bfbb8b74d125c072dbc589179e4275 /examples | |
parent | dcf76e99aa2f45fbb141ce4c7da7dd77d11bf619 (diff) | |
download | react-autosize-textarea-6b9093fbadfb68620f3a87fef2abd0e04fc9d1f6.zip react-autosize-textarea-6b9093fbadfb68620f3a87fef2abd0e04fc9d1f6.tar.gz react-autosize-textarea-6b9093fbadfb68620f3a87fef2abd0e04fc9d1f6.tar.bz2 |
fix example
Diffstat (limited to 'examples')
-rw-r--r-- | examples/MinimumHeight.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/MinimumHeight.example b/examples/MinimumHeight.example index 989d5b9..5d7ca35 100644 --- a/examples/MinimumHeight.example +++ b/examples/MinimumHeight.example @@ -12,7 +12,7 @@ class Example extends React.Component { return ( <div> <h2>Minimum Height</h2> - <TextareaAutosize rows='3' style={textareaStyle} placeholder='minimun height is 3 rows'/> + <TextareaAutosize rows={3} style={textareaStyle} placeholder='minimun height is 3 rows'/> </div> ); } |