FrostByte/client-solid/src/index.tsx

17 lines
266 B
TypeScript
Raw Normal View History

2023-11-15 07:29:59 +01:00
import { Router } from "@solidjs/router";
2023-10-19 02:42:37 +02:00
import { render } from "solid-js/web";
2023-11-22 15:29:27 +01:00
import Root from "./Containers/Root";
2023-11-15 07:29:59 +01:00
import "./index.css";
2023-10-19 02:42:37 +02:00
const root = document.getElementById("root");
render(
() => (
<Router>
<Root />
</Router>
),
root!
);