mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
17 lines
169 B
JavaScript
17 lines
169 B
JavaScript
// import React from "react";
|
|
|
|
// const FOO = false;
|
|
|
|
function id(x) {
|
|
// React;
|
|
// FOO;
|
|
Math;
|
|
id;
|
|
let y = true;
|
|
y = false;
|
|
y;
|
|
let z;
|
|
z;
|
|
return x;
|
|
}
|