Add tailwindcss template

This commit is contained in:
Alexandre Mouton-Brady
2021-12-09 18:59:20 +01:00
parent 7b3a742083
commit 5ecf3a157a
12 changed files with 1476 additions and 0 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;