tldraw/www/pages/_app.tsx

26 lines
510 B
TypeScript
Raw Normal View History

2021-09-04 11:26:46 +00:00
import '../styles/globals.css'
import { init } from '-utils/sentry'
import Head from 'next/head'
import useGtag from '-utils/useGtag'
init()
2021-08-10 16:12:55 +00:00
2021-09-04 11:26:46 +00:00
function MyApp({ Component, pageProps }) {
useGtag()
return (
<>
<Head>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
/>
<title>Tldraw</title>
</Head>
<Component {...pageProps} />
</>
)
2021-08-10 16:12:55 +00:00
}
export default MyApp