How to render a HTML comment in React?

前端 未结 4 1457
有刺的猬
有刺的猬 2020-12-09 15:27

Currently the render method can only return a single element/component. See: here

In the discussion under that ticket some suggest to wrap multiple elements returned

4条回答
  •  北荒
    北荒 (楼主)
    2020-12-09 16:06

    Edit: For those who found this answer useful, checkout this answer instead!

    The posted problem is not asking for comment style in React!


    Use curly brackets, such that you can use javascript comment /* */.

    
        
        {/**/}
            
            
        {/**/}
        
    
    

提交回复
热议问题