Skip to content

Instantly share code, notes, and snippets.

@joaomilho
Last active August 29, 2015 14:13
Show Gist options
  • Save joaomilho/59e4863ac8e60b07b16c to your computer and use it in GitHub Desktop.
Save joaomilho/59e4863ac8e60b07b16c to your computer and use it in GitHub Desktop.
Toggler = React.createClass
getInitialState: ->
visible: true
toggle: ->
@setState(visible: [email protected])
render: ->
<section>
{ @state.visible && <div>HERE I AM</div> }
<button onClick={ @toggle }>Toggle!</button>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment