From 9df99ec11daf9e22d02b7bc8c724f91bd6a39949 Mon Sep 17 00:00:00 2001 From: danbulant Date: Fri, 7 Feb 2020 18:53:48 +0100 Subject: [PATCH] Sample hello world --- client/src/ui/test.jsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 client/src/ui/test.jsx diff --git a/client/src/ui/test.jsx b/client/src/ui/test.jsx new file mode 100644 index 0000000..482eeeb --- /dev/null +++ b/client/src/ui/test.jsx @@ -0,0 +1,11 @@ +import React from 'react'; + +export default React.createClass({ + render: function () { + return ( +
+ Hello world! +
+ ); + }, +}); \ No newline at end of file