a2a-source-edit: write frontend/src/main.jsx

This commit is contained in:
a2a-cloud
2026-07-13 00:19:01 +00:00
parent cb93a4aa86
commit bf1702f7cf

10
frontend/src/main.jsx Normal file
View File

@@ -0,0 +1,10 @@
import React from "react";
import { createRoot } from "react-dom/client";
import { App } from "./App.jsx";
import "./style.css";
createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);