Files

20 lines
309 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
import {Stringify} from 'shared-runtime';
function Component(props) {
let x;
const array = [props.count];
x = array;
const element = <div>{array}</div>;
return (
<div>
{element}
{x}
</div>
);
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{count: 42}],
};