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