From 95514067c7c9f6e90b6d87f02e4fbb3810c3e959 Mon Sep 17 00:00:00 2001 From: danbulant Date: Sat, 15 Feb 2020 17:31:42 +0100 Subject: [PATCH] Sample files for testing configs --- client/src/index.ts | 9 +++++++++ client/static/index.html | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 client/src/index.ts create mode 100644 client/static/index.html diff --git a/client/src/index.ts b/client/src/index.ts new file mode 100644 index 0000000..df7070a --- /dev/null +++ b/client/src/index.ts @@ -0,0 +1,9 @@ +function component() { + const element = document.createElement('div'); + + element.innerHTML = "Ester OS"; + + return element; +} + +document.body.appendChild(component()); \ No newline at end of file diff --git a/client/static/index.html b/client/static/index.html new file mode 100644 index 0000000..b3d6fde --- /dev/null +++ b/client/static/index.html @@ -0,0 +1,9 @@ + + + + Ester OS + + + + + \ No newline at end of file