X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=skyquake%2Fplugins%2Fhelloworld%2Fsrc%2FhelloWorldOne.jsx;fp=skyquake%2Fplugins%2Fhelloworld%2Fsrc%2FhelloWorldOne.jsx;h=8f06fd2fa9efcda3c66e80d76c493e2070e58251;hb=e29efc315df33d546237e270470916e26df391d6;hp=0000000000000000000000000000000000000000;hpb=9c5e457509ba5a1822c316635c6308874e61b4b9;p=osm%2FUI.git diff --git a/skyquake/plugins/helloworld/src/helloWorldOne.jsx b/skyquake/plugins/helloworld/src/helloWorldOne.jsx new file mode 100644 index 000000000..8f06fd2fa --- /dev/null +++ b/skyquake/plugins/helloworld/src/helloWorldOne.jsx @@ -0,0 +1,27 @@ +import React from 'react'; + +export default class HelloWorldApp extends React.Component { + constructor(props) { + super(props); + } + render() { + let html; + html = ( + + ); + return html; + } +} + +class HelloWorldView extends React.Component { + constructor(props) { + super(props); + } + render() { + let html; + html = ( +
HelloWorld: Hello World One
+ ); + return html; + } +}