Good advice on JSX conditionals

from blog Vladimir Klepov as a Coder, | ↗ original
Conditional rendering is a cornerstone of any templating language. React / JSX bravely chose not to have a dedicated conditional syntax, like ng-if="condition", relying on JS boolean operators instead: condition && renders iff condition is truthy, condition ? : renders or depending on the truthiness of condition. Courageous, but not always...