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