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