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 = (
HelloWorld: Hello World One
); return html; } }