tldraw/packages/www/pages/_app.tsx
Steve Ruiz 1d988f132a
[feature] Add Sentry tracking, restore installable PWA (#106)
* This PR restores the sentry and pwa features

* Add gtag to editor in events.
2021-09-22 13:17:52 +01:00

13 lines
232 B
TypeScript

import '../styles/globals.css'
import { init } from '-utils/sentry'
import useGtag from '-utils/useGtag'
init()
function MyApp({ Component, pageProps }) {
useGtag()
return <Component {...pageProps} />
}
export default MyApp