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