JSTQL-JS-Transform/output_testing/522await-side-effecting-promise.js

5 lines
105 B
JavaScript
Raw Normal View History

async function Component(props) {
const x = [];
await (props.id |> populateData(%, x));
return x;
}