Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / helloworld / src / helloWorldTwo.jsx
diff --git a/skyquake/plugins/helloworld/src/helloWorldTwo.jsx b/skyquake/plugins/helloworld/src/helloWorldTwo.jsx
new file mode 100644 (file)
index 0000000..6b7ccdb
--- /dev/null
@@ -0,0 +1,28 @@
+import React from 'react';
+
+export default class HelloWorldTwo extends React.Component {
+    constructor(props) {
+        super(props);
+    }
+    render() {
+        let html;
+        html = (
+            <HelloWorldTwoView />
+        );
+        return html;
+    }
+}
+
+class HelloWorldTwoView extends React.Component {
+    constructor(props) {
+        super(props);
+    }
+    render() {
+        let html;
+        html = (
+           <div>HelloWorld: Hello World Two</div>
+        );
+        return html;
+    }
+}
+