mirror of
https://github.com/facebook/react.git
synced 2026-02-26 05:25:05 +00:00
7 lines
116 B
JavaScript
7 lines
116 B
JavaScript
function Component(props) {
|
|
const x = [];
|
|
<dif>{x}</dif>;
|
|
const y = x.map((item) => item);
|
|
return [x, y];
|
|
}
|