Last active
September 3, 2015 16:23
-
-
Save mgiulio/32d379e68f630f94db66 to your computer and use it in GitHub Desktop.
Atom snippet to create a React component(for Browserify)
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
'.source.js': | |
'Create React component': | |
'prefix': 'reactcomp' | |
'body': 'var React = require("react");\n\nvar $1 = React.createClass({\n\n\trender: function() {\n\t}\n\n});\n\nmodule.exports = $1;' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment