12 lines
188 B
JavaScript
12 lines
188 B
JavaScript
let someGlobal = {};
|
|
function component(a) {
|
|
let x = {a, someGlobal};
|
|
return x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: component,
|
|
params: ['value 1'],
|
|
isComponent: false,
|
|
};
|