Created
July 16, 2017 12:54
-
-
Save davepoon/3d55ad5549ffd8120eb0c0a01ae0eb71 to your computer and use it in GitHub Desktop.
React Class Component webstorm template
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
import React, { PropTypes, Component } from 'react'; | |
class $NAME extends Component { | |
constructor(props) { | |
super(props); | |
} | |
render() { | |
return ( | |
); | |
} | |
} | |
$NAME .propTypes = { | |
actions: PropTypes.object.isRequired, | |
}; | |
export default $NAME; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment