Expected corresponding JSX closing tag for input Reactjs

前端 未结 6 1078
醉话见心
醉话见心 2020-12-23 15:50

While creating a component in Reactjs with input fields error occurs Error: Parse Error: Line 47: Expected corresponding JSX closing tag for input at http://localhost/

6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-23 16:39

    This error also happens if you have got the order of your components wrong.

    Example: this wrong:

      
         
    
         
      
    

    correct way:

       
        
    
          
       
    

提交回复
热议问题