Using JSX children together with `dangerouslySetInnerHTML` is invalid as they will be ignored. ### Invalid: ```tsx
hello" }}>

this will never be rendered

; ``` ### Valid: ```tsx
hello" }} />; ```