⬆️ 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
+11
View File
@@ -0,0 +1,11 @@
import { render } from "solid-js/dom";
import "./index.css";
import App from "./App";
const dispose = render(() => <App />, document.getElementById("root"));
if (import.meta.hot) {
import.meta.hot.accept();
import.meta.hot.dispose(dispose);
}