import React from 'react'; class TestComponent extends React.Component { constructor(props) { super(props); this.state = {text: ''}; } onChange = e => { this.updateText(e.target.value); }; updateText = text => { this.setState({text: text}); }; render() { return (

React lives!

Is React working? Test here: {this.state.text}
); } } export default TestComponent;