E0182: '>' is not allowed directly in JSX text; write {'>'} or > instead
In the children of a JSX element, you can write arbitrary text. However, it is a
syntax error to write >
unescaped in JSX text:
To fix this error, write {'>'}
or >
instead:
Introduced in quick-lint-js version 2.0.0.