mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
9 lines
141 B
JavaScript
9 lines
141 B
JavaScript
function Component(props) {
|
|
const x = [];
|
|
const y = x.map((item) => {
|
|
item.updated = true;
|
|
return item;
|
|
});
|
|
return [x, y];
|
|
}
|