import React, { FC } from 'react' import Script from 'next/script' export enum GaType { admin = 'admin', webapp = 'webapp', } const gaIdMaps = { [GaType.admin]: 'G-DM9497FN4V', [GaType.webapp]: 'G-2MFWXK7WYT', } export interface IGAProps { gaType: GaType } const GA: FC = ({ gaType }) => { return (