Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added the bare minimum React app JSX logic to render it inside the co…
…ntainer element.
  • Loading branch information
maratbn committed Jan 18, 2017
1 parent 7c61c2d commit b0f0210
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions webpack_in/entry.jsx
Expand Up @@ -4,3 +4,10 @@


console.log("JSX entry logic.");


import React from 'react';
import ReactDOM from 'react-dom';


ReactDOM.render(<div>Hello! I'm a React app!!</div>, document.getElementById('react-app'));

0 comments on commit b0f0210

Please sign in to comment.