import type { AppProps } from 'next/app' import useGtag from '../hooks/useGtag' import Head from 'next/head' import './styles.css' function MyApp({ Component, pageProps }: AppProps): JSX.Element { useGtag() return ( <> tldraw
) } export default MyApp