12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
function component([a, b]) {
|
|
let y = {a};
|
|
let z = {b};
|
|
return [y, z];
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: component,
|
|
params: [['val1', 'val2']],
|
|
isComponent: false,
|
|
};
|