Ensure the `key` attribute is present when passing iterables into JSX. It allows frameworks to optimize checking the order of elements. ### Invalid: ```tsx const foo = [
foo
]; const foo = [<>foo]; [1, 2, 3].map(() =>
); Array.from([1, 2, 3], () =>
); ``` ### Valid: ```tsx const foo = [
foo
]; const foo = [foo]; [1, 2, 3].map((x) =>
); Array.from([1, 2, 3], (x) =>
); ```