diff --git a/src/content/reference/react/Component.md b/src/content/reference/react/Component.md index 3b882f09762..d5b6ede53cc 100644 --- a/src/content/reference/react/Component.md +++ b/src/content/reference/react/Component.md @@ -573,7 +573,13 @@ You should write the `render` method as a pure function, meaning that it should #### Returns {/*render-returns*/} -`render` can return any valid React node. This includes React elements such as `
`, strings, numbers, [portals](/reference/react-dom/createPortal), empty nodes (`null`, `undefined`, `true`, and `false`), and arrays of React nodes. +`render` can return any valid React node. This includes React elements such as ``, strings, numbers, [portals](/reference/react-dom/createPortal), empty nodes (`null`, `undefined`, `true`, and `false`), and arrays of React nodes. You can also return [iterables](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol), such as those produced by generators. + +