Skip to content

Instantly share code, notes, and snippets.

@mbektimirov
Created October 14, 2014 08:16
Show Gist options
  • Save mbektimirov/b1b6525e64d6fae92048 to your computer and use it in GitHub Desktop.
Save mbektimirov/b1b6525e64d6fae92048 to your computer and use it in GitHub Desktop.
React: state from props
module.exports = React.createClass
displayName: 'Switcher'
getInitialState: (props) ->
props ||= @props
checked: props.checked
componentWillReceiveProps: (newProps, oldProps) ->
@setState @getInitialState(newProps)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment