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