BOOM react jsx support added and linting fixed

This commit is contained in:
Peter Cottle 2015-04-05 23:11:59 -07:00
parent a1024b22f2
commit 84e8ce71ae
3 changed files with 27 additions and 9 deletions

View file

@ -0,0 +1,11 @@
var React = require('react');
var MyComponent = React.createClass({
render: function() {
return (
<p>Howdy</p>
);
}
});
module.exports = MyComponent;