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

This commit is contained in:
a2a-cloud
2026-07-19 19:55:17 +00:00
parent 78bb954c49
commit 57990efc0a

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