fix: use HTMLElement instead of HTMLDivElement

This commit is contained in:
Sepp Wikramaratna-Clarke
2021-10-13 10:45:01 +01:00
parent 22d8c6f9b2
commit ae0bf98969
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ import { render } from "solid-js/web";
import App from "./App";
render(() => <App />, document.getElementById("root") as HTMLDivElement);
render(() => <App />, document.getElementById("root") as HTMLElement);