import React from 'react'; import './App.css'; import Log from './Log'; interface Props { } interface State { messages: string[] } class App extends React.Component { constructor(props: Props) { super(props); this.state = { messages: ['Here is a line', 'Here is another line'] }; } render() { return (
); } } export default App;