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
belst2y ago
<span>foo</span>{" "}<A href="/url">link</A> I think
Mathieu
MathieuOP2y ago
ty!
Want results from more Discord servers?
Add your server