Console is throwing Unterminated JSX contents error
You have 2 unclosed <div>
tags in your render()
and a semicolon that probably doesn't belong. I'd get rid of those (e.g. close them, delete the semicolon in <div>;
if it doesn't belong) and try it again.