import {Stringify, makeObject_Primitives} from 'shared-runtime'; function Component(props) { const array = [props.count]; const x = makeObject_Primitives(); const element =
{array}
; console.log(x); return
{element}
; } export const FIXTURE_ENTRYPOINT = { fn: Component, params: [{count: 42}], };