diff --git a/static/index.html b/static/index.html index 4834a16..5eefd01 100644 --- a/static/index.html +++ b/static/index.html @@ -5,10 +5,6 @@
- Type your source code into here: - diff --git a/static/main.jsx b/static/main.jsx index fd4b1eb..10fa7ce 100644 --- a/static/main.jsx +++ b/static/main.jsx @@ -1,10 +1,37 @@ const React = require("react"); const ReactDOM = require("react-dom"); + +class CodeArea extends React.Component { + constructor(props) { + super(props); + this.state = {value: ""}; + this.handleChange = this.handleChange.bind(this); + this.submit = this.submit.bind(this); + } + + handleChange(event) { + this.setState({value: event.target.value}); + } + + submit(event) { + console.log("This", this.state.value); + } + + render() { + return (
+ + +
); + } +} + const main = (

Schala web input

Write your source code here

+
); const rootDom = document.getElementById("main"); -ReactDOM.render(

Schala web input

, rootDom); +ReactDOM.render(main, rootDom);