mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:05:09 +00:00
5 lines
74 B
JavaScript
5 lines
74 B
JavaScript
function component(a, b) {
|
|
let x = useMemo((c) => a, []);
|
|
return x;
|
|
}
|