⬆️ Update to latest dependencies

This commit is contained in:
Alexandre Mouton-Brady
2021-01-23 13:56:41 +01:00
parent 9db0670fcc
commit 2711f753a4
21 changed files with 139 additions and 91 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { Component } from "solid-js";
import type { Component } from "solid-js";
const App: Component = () => {
return <p>minimal</p>;
return <h1>Hello world!</h1>;
};
export default App;
+1 -1
View File
@@ -1,4 +1,4 @@
import { render } from "solid-js/dom";
import { render } from "solid-js/web";
import App from "./App";