Skip to content

Instantly share code, notes, and snippets.

View sanjeev-pandey23's full-sized avatar

Sanjeev Pandey sanjeev-pandey23

View GitHub Profile
@sanjeev-pandey23
sanjeev-pandey23 / Auth.tsx
Created July 14, 2025 13:44
Google Auth Flows With Strapi User
import React, { useEffect, useState } from "react";
import { useRouter } from 'next/navigation';
// Declare google property on window object
declare global {
interface Window {
google: any;
}
}
import Script from "next/script";