()
| 8581 | |
| 8582 | it('should warn for using generators as children props', async () => { |
| 8583 | function* getChildren() { |
| 8584 | yield <h1 key="1">Hello</h1>; |
| 8585 | yield <h1 key="2">World</h1>; |
| 8586 | } |
| 8587 | |
| 8588 | function Foo() { |
| 8589 | const children = getChildren(); |