initial commit
This commit is contained in:
16
client/src/main.tsx
Normal file
16
client/src/main.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import "bootstrap/dist/css/bootstrap.min.css";
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import App from "./App.tsx";
|
||||
import "./index.css";
|
||||
import { GoogleOAuthProvider } from "@react-oauth/google";
|
||||
|
||||
const googleClientID = import.meta.env.VITE_GOOGLE_CLIENT_ID as string;
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root")!).render(
|
||||
<React.StrictMode>
|
||||
<GoogleOAuthProvider clientId={googleClientID}>
|
||||
<App />
|
||||
</GoogleOAuthProvider>
|
||||
</React.StrictMode>,
|
||||
);
|
||||
Reference in New Issue
Block a user