first commit
This commit is contained in:
commit
44995cb5db
60 changed files with 5472 additions and 0 deletions
13
src/main.jsx
Normal file
13
src/main.jsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { StrictMode } from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import { GoogleOAuthProvider } from '@react-oauth/google'
|
||||
import './index.css'
|
||||
import App from './App.jsx'
|
||||
|
||||
createRoot(document.getElementById('root')).render(
|
||||
<StrictMode>
|
||||
<GoogleOAuthProvider clientId="725335319736-kglnmjhjppb3563vh9tpj22u5crao0a8.apps.googleusercontent.com">
|
||||
<App />
|
||||
</GoogleOAuthProvider>
|
||||
</StrictMode>,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue