Created
January 23, 2016 12:40
-
-
Save codemilli/f6eba5a8091c2fbe4407 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import React from 'react'; | |
/** | |
* Define React Component $class$ | |
*/ | |
class $class$ extends React.Component { | |
/** | |
* Constructor for $class$ | |
* @constructs | |
* @param {$class$.propTypes} props | |
*/ | |
constructor(props) { | |
super(props); | |
this.state = { | |
}; | |
} | |
/** | |
* Render $class$. | |
* @returns {ReactElement|XML} | |
*/ | |
render() { | |
return ( | |
<div></div> | |
); | |
} | |
}; | |
/** | |
* Define Properties' type for $class$ | |
*/ | |
$class$.propTypes = { | |
}; | |
/** | |
* Define Default Props of $class$ | |
*/ | |
$class$.defaultProps = { | |
}; | |
export default $class$; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment