Fragments are only necessary at the top of a JSX "block" and only when there are multiple children. Fragments are not needed in other scenarios. ### Invalid: ```tsx <> <>
<>

foo <>bar

``` ### Valid: ```tsx <>{foo} <>
<>foo

foo bar

```