From 8dd83159b52101f69a86243bf7f7cc9fdeba854b Mon Sep 17 00:00:00 2001 From: danbulant Date: Sat, 15 Feb 2020 18:04:37 +0100 Subject: [PATCH] Start working on Ester OS --- client/src/index.ts | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/client/src/index.ts b/client/src/index.ts index df7070a..7acb749 100644 --- a/client/src/index.ts +++ b/client/src/index.ts @@ -1,9 +1,3 @@ -function component() { - const element = document.createElement('div'); +import boot from './managers/boot'; - element.innerHTML = "Ester OS"; - - return element; -} - -document.body.appendChild(component()); \ No newline at end of file +boot();