Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React-2
QOS-React-2
/
compiler
/
packages
/
babel-plugin-react-compiler
/
src
/
__tests__
/
fixtures
/
compiler
/
use-no-memo-module-level.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
8 lines
114 Bytes
Copy permalink
Copy
Raw
1
'
use no memo
'
;
2
3
export
default
function
foo
(
x
,
y
)
{
4
if
(
x
)
{
5
return
foo
(
false
,
y
);
6
}
7
return
[
y
*
10
];
8
}