Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / helloworld / src / helloWorldDashboard.jsx
diff --git a/skyquake/plugins/helloworld/src/helloWorldDashboard.jsx b/skyquake/plugins/helloworld/src/helloWorldDashboard.jsx
new file mode 100644 (file)
index 0000000..532813d
--- /dev/null
@@ -0,0 +1,27 @@
+import React from 'react';
+
+export default class HelloWorldDashboard 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: HelloWorldDashboard</div>
+        );
+        return html;
+    }
+}