Adding minimal & tailwind template

This commit is contained in:
Alexandre
2020-08-13 22:18:05 +02:00
parent 0181578698
commit 8967356fc1
29 changed files with 5574 additions and 293 deletions
+7
View File
@@ -0,0 +1,7 @@
import { Component } from "solid-js";
const App: Component = () => {
return <p>minimal</p>;
};
export default App;
+7
View File
@@ -0,0 +1,7 @@
import "./tailwind.css";
import { render } from "solid-js/dom";
import App from "./App";
export const rootEl = document.getElementById("root");
export const dispose = render(() => App, rootEl);
+5
View File
@@ -0,0 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;