Add main.jsx

This commit is contained in:
2026-02-20 12:12:37 +00:00
parent ebb6b33cbb
commit 9a95f74488

4
src/main.jsx Normal file
View File

@@ -0,0 +1,4 @@
import React from "react"
import ReactDOM from "react-dom/client"
import App from "./App"
ReactDOM.createRoot(document.getElementById("root")).render(<App />)