-
What is more performant between:
|
Beta Was this translation helpful? Give feedback.
Answered by
atk
Jul 23, 2024
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
stanlrt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<Dynamic as={(props) => <For.../>} />
should be more performant than<For>{() => <Dynamic />}</For>
. The performance of Dynamic is slightly worse than that of a normal component.