import {makeObject_Primitives, mutateAndReturn, toJSON} from 'shared-runtime'; function Component(_props) { const collection = [makeObject_Primitives()]; const results = []; for (const item of collection) { results.push(
{toJSON(mutateAndReturn(item))}
); } return
{results}
; } export const FIXTURE_ENTRYPOINT = { fn: Component, params: [], isComponent: true, };