import React from 'react'; import ReactDOM from 'react-dom/client'; import { GoogleOAuthProvider } from '@react-oauth/google'; import App from './App'; const rootElement = document.getElementById('root'); if (!rootElement) { throw new Error("Could not find root element to mount to"); } // IMPORTANT: Replace this with your actual Google Client ID from the Google Cloud Console. const GOOGLE_CLIENT_ID = '747269699513-cqnblldtk4bebd8l3iikdvsh9j60le1m.apps.googleusercontent.com'; const root = ReactDOM.createRoot(rootElement); root.render( );