diff options
-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> ); } |