Skip to content

Instantly share code, notes, and snippets.

@codemilli
Created January 23, 2016 12:40
Show Gist options
  • Save codemilli/f6eba5a8091c2fbe4407 to your computer and use it in GitHub Desktop.
Save codemilli/f6eba5a8091c2fbe4407 to your computer and use it in GitHub Desktop.
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