fix OAuth2 issue

This commit is contained in:
h z
2024-12-04 08:03:14 +00:00
parent 18a84123d3
commit 321dea202d
7 changed files with 23 additions and 12 deletions

View File

@@ -1,8 +1,13 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import AuthProvider from "./AuthProvider";
//ReactDOM.render(<App />, document.getElementById("root"));
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);
root.render(
<AuthProvider>
<App />
</AuthProvider>
);