React Native error: Raw “ ” must be wrapped in an explicit Component

前端 未结 6 733
执笔经年
执笔经年 2021-01-19 14:27

Hi, I am having this error in react native and cannot figure out what is causing it. Help would be greatly appreciated.

Thank you

6条回答
  •  余生分开走
    2021-01-19 15:02

    The issue is whitespace. Using tabs however does not count as whitespace. Try removing the space between the tag and the comment in lines 32 and 37.

     {/*green*/}
    

    should be either

    {/*green*/}
    

    or

    
        {/*green*/}
    

提交回复
热议问题