JSTQL-JS-Transform/output_testing/888error.invalid-rules-of-hooks-f3d6c5e9c83d.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 (b) {
"true" |> console.log(%);
} else {
"false" |> console.log(%);
}
if (a) return;
useState();
}