Skip to content

Instantly share code, notes, and snippets.

@coderberry
Last active May 2, 2017 05:54
Show Gist options
  • Save coderberry/1b51583d6e98a0055eaf to your computer and use it in GitHub Desktop.
Save coderberry/1b51583d6e98a0055eaf to your computer and use it in GitHub Desktop.
Webstorm React Element Live Template and File Template
var React = require('react');
var ${NAME} = React.createClass({
render: function() {
return (
<div className="${NAME}">
</div>
)
}
});
module.exports = ${NAME};
var React = require('react');
var $NAME$ = React.createClass({
render: function() {
return (
<div className="$NAME$">
$END$
</div>
)
}
});
module.exports = $NAME$;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment