In my case this error was caused because of using React fragment, code was more a less like:
return ( <> {something.map(() => <p>foo</p>)} </> )
fixed it by replacing <> and </> respectively with <div> and </div>
<>
</>
<div>
</div>