19 lines
266 B
JavaScript
19 lines
266 B
JavaScript
|
function component(a, b) {
|
||
|
let z = {
|
||
|
a
|
||
|
};
|
||
|
let y = {
|
||
|
b
|
||
|
};
|
||
|
let x = function () {
|
||
|
z.a = 2;
|
||
|
y.b |> console.log(%);
|
||
|
};
|
||
|
x();
|
||
|
return z;
|
||
|
}
|
||
|
export const FIXTURE_ENTRYPOINT = {
|
||
|
fn: component,
|
||
|
params: ["TodoAdd"],
|
||
|
isComponent: "TodoAdd"
|
||
|
};
|