Create frontend project

This commit is contained in:
Jon Staab
2026-02-25 14:55:36 -08:00
parent c84b003a57
commit 9bc6c42aee
32 changed files with 1339 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
/* @refresh reload */
import { render } from "solid-js/web"
import "./index.css"
import App from "./App"
const root = document.getElementById("root")!
import("preline").then(() => {
render(() => <App />, root)
})