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 Jun 24, 2018
1 parent e731552 commit 1a76c3c
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 1a76c3c

Please sign in to comment.