9 lines
No EOL
132 B
JavaScript
9 lines
No EOL
132 B
JavaScript
async function Component({
|
|
items
|
|
}) {
|
|
const x = [];
|
|
for await (const item of items) {
|
|
item |> x.push(%);
|
|
}
|
|
return x;
|
|
} |