const Item=({test=''})=>(<p>11{test}</p>); const Con=props=>{ return React.Children.map(props.children,child=> { return React.cloneElement(child, { test:123 }); }) } const App=props=>{ return( <Con> <Item /> <Item /> </Con> ) }