Toggling Visibility

Likewise we can toggle a class (or a 'selected' attribute on <option>):


RESETRUNFULL
<style type="text/css"> .hidden { display:none; } </style>

const Example = props =>
     <div className={props.shouldHide? 'hidden' : undefined}>Hello</div>