reminder-bot/reminder-dashboard/src/index.tsx

6 lines
147 B
TypeScript
Raw Normal View History

2024-02-24 16:10:25 +00:00
import { render } from "preact";
import { App } from "./components/App";
import "./styles.scss";
2024-02-24 16:10:25 +00:00
render(<App />, document.getElementById("app"));