import React from 'react'; export default class HelloWorldApp extends React.Component { constructor(props) { super(props); } render() { let html; html = ( ); return html; } } class HelloWorldView extends React.Component { constructor(props) { super(props); } render() { let html; html = (
GoodbyeWorld: Goodbye World Two
); return html; } }