Removed manual wrapping of JSX code to bypass jshint errors and advised usage of JSXHint.

Signed-off-by: Simon Bailey <simon@newtriks.com>
This commit is contained in:
Simon Bailey
2014-05-15 20:49:21 +01:00
parent d6d216d05d
commit f8e3d3c6eb
5 changed files with 7 additions and 9 deletions
+1 -3
View File
@@ -8,15 +8,13 @@ var React = require('react/addons');
require('../../styles/<%= classedName %>.css');
var <%= classedName %> = React.createClass({
/*jshint ignore:start */
render: function () {
return (
<div>
<p>Content for <%= classedName %></p>
</div>
)
);
}
/*jshint ignore:end */
});
module.exports = <%= classedName %>;