how to solve "Unexpected use of comma operator no-sequences" error in react
return a <div> tag to the rendered component
put your other components inside the <div> tag.E.g;
const App=()=>{
return(
<div>
<Header/>,
<Body/>
</div>
);
}
ReactDom.render(<App/>,document.getElementByid("root));