17 lines
240 B
JavaScript
17 lines
240 B
JavaScript
function Component() {
|
|
const x = [];
|
|
for (const item of [1, 2]) {
|
|
if (item === 1) {
|
|
break;
|
|
}
|
|
x.push(item);
|
|
}
|
|
return x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [],
|
|
isComponent: false,
|
|
};
|