JSTQL-JS-Transform/output_testing/898error.invalid-rules-of-hooks-9718e30b856c.js

13 lines
252 B
JavaScript
Raw Normal View History

// Expected to fail
// Invalid because it's dangerous and might not warn otherwise.
// This *must* be invalid.
function useHook() {
if (a) return;
if (b) {
"true" |> console.log(%);
} else {
"false" |> console.log(%);
}
useState();
}