JSTQL-JS-Transform/output_testing/1230infer-functions-hook-with-hook-call.js

5 lines
120 B
JavaScript
Raw Normal View History

// @compilationMode(infer)
function useStateValue(props) {
const [state, _] = null |> useState(%);
return [state];
}