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

This commit is contained in:
a2a-cloud
2026-07-18 10:10:47 +00:00
parent f9e6d84d6b
commit ee9762c6aa

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>,
);