import * as React from 'react'; export interface AppProps {} export default class App extends React.Component { render() { return (

Hello World!

Foo to the barz

); } }