Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / goodbyeworld / src / components / goodbyeWorldOne.jsx
diff --git a/skyquake/plugins/goodbyeworld/src/components/goodbyeWorldOne.jsx b/skyquake/plugins/goodbyeworld/src/components/goodbyeWorldOne.jsx
new file mode 100644 (file)
index 0000000..8725ef5
--- /dev/null
@@ -0,0 +1,27 @@
+import React from 'react';
+export default class GoodbyeWorldApp extends React.Component {
+    constructor(props) {
+        super(props);
+    }
+    render() {
+        let html;
+        html = (
+            <GoodbyeWorldView />
+        );
+        return html;
+    }
+}
+
+class GoodbyeWorldView extends React.Component {
+    constructor(props) {
+        super(props);
+    }
+    render() {
+        let html;
+        html = (
+           <div>GoodbyeWorld: Goodbye World One</div>
+        );
+        return html;
+    }
+}
+