Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / helloworld / src / helloWorldTwo.jsx
1 import React from 'react';
2
3 export default class HelloWorldTwo extends React.Component {
4     constructor(props) {
5         super(props);
6     }
7     render() {
8         let html;
9         html = (
10             <HelloWorldTwoView />
11         );
12         return html;
13     }
14 }
15
16 class HelloWorldTwoView extends React.Component {
17     constructor(props) {
18         super(props);
19     }
20     render() {
21         let html;
22         html = (
23            <div>HelloWorld: Hello World Two</div>
24         );
25         return html;
26     }
27 }
28