import React from 'react'; export default class HelloWorldTwo extends React.Component { constructor(props) { super(props); } render() { let html; html = ( ); return html; } } class HelloWorldTwoView extends React.Component { constructor(props) { super(props); } render() { let html; html = (
HelloWorld: Hello World Two
); return html; } }