Files
solidjs-templates/ts/src/index.ts
T
2020-08-01 00:23:02 +02:00

8 lines
193 B
TypeScript

import { render } from "solid-js/dom";
import "./index.css";
import App from "./App";
export const rootEl = document.getElementById("root");
export const dispose = render(() => App, rootEl);