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();