You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is strict mode?
StrictMode is a tool for highlighting potential problems in an application. Like Fragment, StrictMode does not render any visible UI. It activates additional checks and warnings for its descendants.
It seems probably that development teams would want to run their applications in strict mode on dev to ensure that potential problems are caught. We should audit our components and packages that leverage react to find any potential issues from running in strict mode.
For anything small, we can immediate fix. Anything potentially breaking or large-scale should result in a new task.
The text was updated successfully, but these errors were encountered:
What is strict mode?
StrictMode is a tool for highlighting potential problems in an application. Like Fragment, StrictMode does not render any visible UI. It activates additional checks and warnings for its descendants.
More from ReactJS on StrictMode: https://reactjs.org/docs/strict-mode.html
It seems probably that development teams would want to run their applications in strict mode on dev to ensure that potential problems are caught. We should audit our components and packages that leverage react to find any potential issues from running in strict mode.
For anything small, we can immediate fix. Anything potentially breaking or large-scale should result in a new task.
The text was updated successfully, but these errors were encountered: