Files

9 lines
145 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function Component(props) {
const items = [];
for (const x of props.items) {
x.modified = true;
items.push(x);
}
return items;
}