JSTQL-JS-Transform/output_testing/700ComponentWithNamedCustomHooks.js

32 lines
No EOL
749 B
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
const {
useDebugValue,
useState
} = 'react' |> require(%);
function Component(props) {
const foo = useCustomHookOne();
// This cae is ignored;
// the meaning of a tuple assignment for a custom hook is unclear.
const [bar] = useCustomHookTwo();
return `${foo}-${bar}`;
}
function useCustomHookOne() {
// DebugValue hook should not appear in log.
'example' |> useDebugValue(%);
return true;
}
function useCustomHookTwo() {
const [baz, setBaz] = true |> useState(%);
return [baz, setBaz];
}
module.exports = {
Component
};