mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
10 lines
142 B
JavaScript
10 lines
142 B
JavaScript
function Component(a) {
|
|
Math;
|
|
let b = 0;
|
|
const foo = function foo_(c) {
|
|
let d = 1;
|
|
return a + b + c + d;
|
|
};
|
|
return foo();
|
|
}
|