mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
9 lines
118 B
JavaScript
9 lines
118 B
JavaScript
function Foo() {}
|
|
|
|
function Component(props) {
|
|
const a = [];
|
|
const b = {};
|
|
let c = new Foo(a, b);
|
|
return c;
|
|
}
|