Prevent the use of `dangerouslySetInnerHTML` which can lead to XSS vulnerabilities if used incorrectly. ### Invalid: ```tsx const hello =
; ``` ### Valid: ```tsx const hello =
Hello World!
; ```