## Input
```javascript
// @panicThreshold:"none" @validateExhaustiveMemoizationDependencies:false
// unclosed disable rule should affect all components
/* eslint-disable react-hooks/rules-of-hooks */
function ValidComponent1(props) {
return
Hello World!
;
}
function ValidComponent2(props) {
return {props.greeting}
;
}
```
## Code
```javascript
// @panicThreshold:"none" @validateExhaustiveMemoizationDependencies:false
// unclosed disable rule should affect all components
/* eslint-disable react-hooks/rules-of-hooks */
function ValidComponent1(props) {
return Hello World!
;
}
function ValidComponent2(props) {
return {props.greeting}
;
}
```
### Eval output
(kind: exception) Fixture not implemented