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
/
rest-param-with-object-spread-pattern.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
8 lines
149 Bytes
Copy permalink
Copy
Raw
1
function
Component
(
foo
,
...{
bar
})
{
2
return
[
foo
,
bar
];
3
}
4
5
export
const
FIXTURE_ENTRYPOINT
=
{
6
fn
:
Component
,
7
params
:
[
'
foo
'
,
{
bar
:
'
bar
'
}],
8
};