feat: init commit.

This commit is contained in:
2023-03-18 13:46:46 +08:00
commit 3b52a796fc
39 changed files with 4928 additions and 0 deletions

7
src/index.tsx Normal file
View File

@ -0,0 +1,7 @@
/* @refresh reload */
import { render } from "solid-js/web";
import "./styles.css";
import App from "./App";
render(() => <App />, document.getElementById("root") as HTMLElement);