import React from 'react'; export default class HelloWorldDashboard 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: HelloWorldDashboard
); return html; } }