Created
April 2, 2017 21:07
-
-
Save eiwi1101/96fd2d2646fdaabb15332656c2c64bf8 to your computer and use it in GitHub Desktop.
Personal React style guide 0.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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