Skip to content

Instantly share code, notes, and snippets.

@eiwi1101
Created April 2, 2017 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eiwi1101/96fd2d2646fdaabb15332656c2c64bf8 to your computer and use it in GitHub Desktop.
Save eiwi1101/96fd2d2646fdaabb15332656c2c64bf8 to your computer and use it in GitHub Desktop.
Personal React style guide 0.1
@App = React.createClass
#== Validations
propTypes: {}
contextTypes: {}
#== Initialize
getDefaultProps: ->
{}
getInitialState: ->
{}
getChildContext: ->
{}
#== Lifecycle
componentWillMount: ->
null
componentWillReceiveProps: ->
null
componentWillUnmount: ->
null
#== Callbacks & Actions
_handleAThing: ->
null
#== Render
render: ->
null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment