Components without children can be self-closed to avoid unnecessary extra closing tag.
The following patterns are considered warnings:
var HelloJohn = <Hello name="John"></Hello>;
The following patterns are not considered warnings:
var contentContainer = <div className="content"></div>;
var HelloJohn = <Hello name="John" />;
var Profile = <Hello name="John"><img src="picture.png" /></Hello>;