We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f5009 commit 052499dCopy full SHA for 052499d
Readme.md
@@ -83,9 +83,9 @@ export default () => (
83
)
84
```
85
86
-### Stateful components
+### Lifecycle components
87
88
-When state, lifecycle hooks or initial data population you can export a `React.Component`:
+When you need state, lifecycle hooks or **initial data population** you can export a `React.Component`:
89
90
```jsx
91
import React from 'react'
@@ -95,7 +95,6 @@ export default class extends React.Component {
95
? { userAgent: req.headers.userAgent }
96
: { userAgent: navigator.userAgent }
97
}
98
-
99
render () {
100
return <div>
101
Hello World {this.props.userAgent}
0 commit comments