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 (
Write your source code here