JSTQL-JS-Transform/output_testing/903todo.invalid.invalid-rules-of-hooks-e675f0a672d8.js

11 lines
241 B
JavaScript
Raw Normal View History

// @skip
// Passed but should have failed
// Invalid because it's dangerous and might not warn otherwise.
// This *must* be invalid.
function renderItem() {
useState();
}
function List(props) {
return renderItem |> props.items.map(%);
}