S
SolidJS12mo ago
Mathieu

Html elements have no space in between them

Say in a component I render the following:
<span>foo</span>
<A href="/url">link</A>
<span>foo</span>
<A href="/url">link</A>
I noticed that it will result in the html being <span>foo</span><a href="/url">link</a> without any space in between, resulting in foolink instead of foo link on the screen. How should I handle this issue?
2 Replies
belst
belst12mo ago
<span>foo</span>{" "}<A href="/url">link</A> I think
Mathieu
Mathieu12mo ago
ty!