Sample hello world

This commit is contained in:
danbulant 2020-02-07 18:53:48 +01:00
parent 31b8c67e55
commit 9df99ec11d

11
client/src/ui/test.jsx Normal file
View file

@ -0,0 +1,11 @@
import React from 'react';
export default React.createClass({
render: function () {
return (
<div className="greeting">
Hello world!
</div>
);
},
});