Self closing tag
"Another thing that you must have noticed is how the component tag is closed in ReactDOM.render
" added Mike.
ReactDOM.render(<App .../>, document.getElementById('container'));
"As JSX is based on XML, it allows adding a self-closing tag. All the component tags must be closed either with self-closing format or with a closing tag."
"Thanks Mike! Things make much more sense now."