Spaces:
Running
Running
| import React from 'react'; | |
| import ReactDOM from 'react-dom/client'; | |
| import App from './App.jsx'; | |
| import './index.css'; | |
| import { GoogleOAuthProvider } from '@react-oauth/google'; // <-- ADD THIS | |
| ReactDOM.createRoot(document.getElementById('root')).render( | |
| <React.StrictMode> | |
| {/* REPLACE WITH YOUR ACTUAL CLIENT ID */} | |
| <GoogleOAuthProvider clientId="525088967752-vhdm44u6qddh5ldot4p1hibe1k0f7mk2.apps.googleusercontent.com"> | |
| <App /> | |
| </GoogleOAuthProvider> | |
| </React.StrictMode>, | |
| ) |