#Rendering issue
1 messages · Page 1 of 1 (latest)
"one of the jsx"
What does that mean?
JSX gets compiled to an expression creating real dom nodes once executed. Are you trying to render the same html element in two places at once?
You probably need to wrap it in a thunk so that it is executed lazily, producing different html elements
I meant one out of the two JSX elements. Yes, I am trying to do that. I will give that a go. Thanks!
Or I was thinking making an copy of the piece of state as it's an array of JSX elements generated using <For> element.
probably better to share some code so we are on the same page
Here is an old issue that sounds similar: https://github.com/solidjs/solid/issues/899
Yes, this is what I was experiencing. Thanks for that! 
FYI, I did find a workaround but is not elegant. I'll keep trying!