codex-proxy / web /src /main.tsx
icebear0828
feat: migrate dashboard to Preact + Vite
b7d4394
raw
history blame
135 Bytes
import { render } from "preact";
import { App } from "./App";
import "./index.css";
render(<App />, document.getElementById("app")!);