79552172

Date: 2025-04-03 06:47:25
Score: 2
Natty:
Report link

enter image description here

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>
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sagar Vaghela