⬆️ Update to latest dependencies

This commit is contained in:
Alexandre
2021-06-27 20:47:53 +02:00
parent 4bd1ae3ac2
commit 326f415c1e
20 changed files with 351 additions and 341 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { Component } from "solid-js";
const App: Component = () => {
return (
<p class="text-4xl text-green-700 text-center py-20">Hello tailwind!</p>
);
};
export default App;
+6
View File
@@ -0,0 +1,6 @@
import "windi.css";
import { render } from "solid-js/web";
import App from "./App";
render(() => <App />, document.getElementById("root"));