Skip to content

Instantly share code, notes, and snippets.

@mgiulio
Last active September 3, 2015 16:23
Show Gist options
  • Save mgiulio/32d379e68f630f94db66 to your computer and use it in GitHub Desktop.
Save mgiulio/32d379e68f630f94db66 to your computer and use it in GitHub Desktop.
Atom snippet to create a React component(for Browserify)
'.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