11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
|
// @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(%);
|
||
|
}
|