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
/
destructuring-array-default.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
10 lines
187 Bytes
Copy permalink
Copy
Raw
1
function
Component
(
props
)
{
2
const
[[
x
]
=
[
'
default
'
]]
=
props
.
y
;
3
return
x
;
4
}
5
6
export
const
FIXTURE_ENTRYPOINT
=
{
7
fn
:
Component
,
8
params
:
[
'
TodoAdd
'
],
9
isComponent
:
'
TodoAdd
'
,
10
};