score:3

Accepted answer

{firsthalfy1.map(month => (<div key={your key}><field/><component2/></div>))}

you need a wrapper for those components, such as a div or react.fragment. plus you need a key for each month.

score:1

you can use from fragment like this: <>... this empty tag is also fragment

{firsthalfy1.map(month => (
     <react.fragment key={month.id}>
        <field {...month}/> 
        <component2/>
    </react.fragment>
))}

Related Query

More Query from same tag