2017-09-20 23:15:29 -07:00
|
|
|
const React = require("react");
|
|
|
|
const ReactDOM = require("react-dom");
|
|
|
|
|
2017-09-20 23:21:45 -07:00
|
|
|
const main = (<div>
|
|
|
|
<h1>Schala web input</h1>
|
|
|
|
<p>Write your source code here</p>
|
|
|
|
</div>);
|
|
|
|
|
|
|
|
const rootDom = document.getElementById("main");
|
|
|
|
ReactDOM.render(<h1>Schala web input</h1>, rootDom);
|