Files
2024-04-02 16:49:31 -07:00

9 lines
97 B
JavaScript

function component(a) {
let t = { a };
function x() {
t.foo();
}
x(t);
return t;
}