This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; |