Pattern: Unescaped entity in JSX text
Issue: -
Special characters in JSX text nodes need to be properly escaped to prevent syntax errors and ensure correct rendering. Use HTML entities or JSX expressions for special characters.
Example of incorrect code:
<div> > </div>
Example of correct code:
<div> > </div>
<div> {">"} </div>