Skip to content Skip to sidebar Skip to footer

React Not Rendering Child Elements

I'm new to React, and I'm trying to bind React on my Angular Project. Currently I have some components which I need only bind children elements. But I am getting this error: Invari

Solution 1:

try to enclose your return statements inside a div tag.Else when your code will be converted into plain javascript and it will insert a semicolon at end of your return statement and hence leads to unreachable code.So enclose return in a

<div>
return //your code
</div>

Post a Comment for "React Not Rendering Child Elements"