1d988f132a
* This PR restores the sentry and pwa features * Add gtag to editor in events.
13 lines
232 B
TypeScript
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
|