const text = "HELLO WORLD".split("");
<div style={{ display: "flex", justifyContent: "space-between", width: "100%", fontSize: "24px", textTransform: "uppercase" }}>
{text.map((char, index) => (
<span key={index}>{char}</span>
))}
</div>