tutu/src/index.tsx

6 lines
156 B
TypeScript
Raw Normal View History

2024-08-05 15:33:00 +08:00
import { render } from "solid-js/web";
import App from "./App.js";
import "./material/theme.css";
2024-07-14 20:28:44 +08:00
2024-08-05 15:33:00 +08:00
render(() => <App />, document.getElementById("root")!);