Is there a difference in performance when using Rooks useMutationObserver vs the built in MutationObserver? #1580
-
Basically what the q says, is it better for performance if we use Rooks -> |
Beta Was this translation helpful? Give feedback.
Answered by
imbhargav5
Mar 16, 2023
Replies: 1 comment
-
Hi @jojov92 the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
imbhargav5
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @jojov92 the
useMutationObserver
internally relies onMutationObserver
. So the performance is pretty much the same. Good luck!