⬆️ Update dependencies

This commit is contained in:
Alexandre Mouton-Brady
2021-01-02 14:20:08 +01:00
parent 5cc4d5bcfd
commit 1dddc03a84
30 changed files with 726 additions and 8486 deletions
-6
View File
@@ -1,6 +0,0 @@
import { render } from "solid-js/dom";
import App from "./App";
export const rootEl = document.getElementById("root");
export const dispose = render(() => App, rootEl);
+10
View File
@@ -0,0 +1,10 @@
import { render } from "solid-js/dom";
import App from "./App";
const dispose = render(() => <App />, document.getElementById("root"));
if (import.meta.hot) {
import.meta.hot.accept();
import.meta.hot.dispose(dispose);
}