mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 08:50:06 +02:00
BOOM react jsx support added and linting fixed
This commit is contained in:
parent
a1024b22f2
commit
84e8ce71ae
3 changed files with 27 additions and 9 deletions
11
src/js/react_views/TestView.jsx
Normal file
11
src/js/react_views/TestView.jsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
var React = require('react');
|
||||
|
||||
var MyComponent = React.createClass({
|
||||
render: function() {
|
||||
return (
|
||||
<p>Howdy</p>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = MyComponent;
|
Loading…
Add table
Add a link
Reference in a new issue