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