main
js 8 lines 118 Bytes
Raw
1 function Foo() {}
2
3 function Component(props) {
4 const a = [];
5 const b = {};
6 let c = new Foo(a, b);
7 return c;
8 }