Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sseletskyy/98c2ea216f2592a509c642e36265c02b to your computer and use it in GitHub Desktop.
Save sseletskyy/98c2ea216f2592a509c642e36265c02b 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