- but mostly from http://jslog.com/2014/10/02/react-with-webpack-part-1
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
// https://facebook.github.io/react/docs/getting-started.html
|
|
|
|
var React = require('react');
|
|
var ReactDOM = require('react-dom');
|
|
|
|
ReactDOM.render(
|
|
<h1>Hello, XMas world!</h1>,
|
|
document.getElementById('content')
|
|
);
|