Skip to content

Instantly share code, notes, and snippets.

@jim-at-jibba
Created September 21, 2016 07:40
Show Gist options
  • Save jim-at-jibba/41295fb78893328377c9cf4ae1b89f6e to your computer and use it in GitHub Desktop.
Save jim-at-jibba/41295fb78893328377c9cf4ae1b89f6e to your computer and use it in GitHub Desktop.
React Class Component Webstorm/PHPStorm File Template
import React, { PropTypes, Component } from 'react';
class $NAME extends Component {
render() {
return (
);
}
}
$NAME.propTypes = {
// myProp: PropTypes.string.isRequired
};
export default $NAME;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment