Skip to content

Commit da29d89

Browse files
committed
Added note about string ref API to strict mode section
1 parent ce57928 commit da29d89

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

content/blog/2018-02-07-react-v-16-3.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ We are also adding a new static lifecycle, `getDerivedStateFromProps`, as a safe
5757
5858
Although it is not possible for strict mode to catch all problems (e.g. certain types of mutation), it can help with many. If you see warnings in strict mode, those things will likely cause bugs for async rendering.
5959

60-
In version 16.3, `StrictMode` helps with two things: identifying unsafe lifecycles and detecting unexpected side effects. Additional functionality will be added with future releases of React.
60+
In version 16.3, `StrictMode` helps with only a handful of things:
61+
* Identifying components with unsafe lifecycles
62+
* Identifying usage of the legacy string ref API
63+
* Detecting unexpected side effects
64+
65+
Additional functionality will be added with future releases of React.
6166

6267
[Learn more about the `StrictMode` component here.](#)

0 commit comments

Comments
 (0)