mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-24 15:08:44 -05:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import { render } from "solid-js/web";
|
|
|
|
import "normalize.css";
|
|
import "./styles/global.css";
|
|
import App from "./App";
|
|
|
|
render(() => <App />, document.getElementById("root") as HTMLElement);
|