Support astro & other common FE file extensions (#489)

Closes #462
This commit is contained in:
Will Chen
2025-06-24 22:23:20 -07:00
committed by GitHub
parent 64ae18b34b
commit 08ab7c1c37
16 changed files with 1513 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
createRoot(document.getElementById("root")!).render(<App />);