Is StrictMode still necessary? #28
Answered
by
guillaumebrunerie
raibima
asked this question in
General Questions
-
With the new eslint rules, wondering if the runtime |
Beta Was this translation helpful? Give feedback.
Answered by
guillaumebrunerie
Oct 25, 2024
Replies: 1 comment
-
Yes, for instance if you have an effect that doesn't clean up after itself properly, this will be highlighted by |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
poteto
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, for instance if you have an effect that doesn't clean up after itself properly, this will be highlighted by
<StrictMode>
(by breaking your app), but it isn't something a compiler can detect.